diff options
author | Burt P <pburt0@gmail.com> | 2019-08-20 03:34:20 -0500 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2019-08-22 23:10:17 +0200 |
commit | 695e8ef2bc0298356918a430e41458e510e7b6c5 (patch) | |
tree | a8651fa4335ca4871c1026ab692a876c55029fe0 /modules | |
parent | e6dcfd248363bf2dbaf65eec50efd7ee4e472d61 (diff) |
monitors: fix class inch double marks
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'modules')
-rw-r--r-- | modules/devices/monitors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/devices/monitors.c b/modules/devices/monitors.c index 5bffaa4a..c761d59d 100644 --- a/modules/devices/monitors.c +++ b/modules/devices/monitors.c @@ -121,7 +121,7 @@ gchar *monitor_name(monitor *m, gboolean include_vendor) { } if (e->img_max.diag_in) - desc = appfsp(desc, "%s\"", e->img_max.class_inch); + desc = appfsp(desc, "%s", e->img_max.class_inch); if (e->name) desc = appfsp(desc, "%s", e->name); |