summaryrefslogtreecommitdiffstats
path: root/source/theme.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-01-21 12:58:52 +0100
committerDave Davenport <qball@gmpclient.org>2017-01-21 12:58:52 +0100
commit0ebd6a260b652e6d3820c7571683d87eea723dec (patch)
treef2ad8a29c49cca1e79edf4e3bfd19cf1fe503b33 /source/theme.c
parentb0870e02f7bde476a47e50d252c9d4c9dadf12a8 (diff)
Add auto-detect option to DPI setting.
Diffstat (limited to 'source/theme.c')
-rw-r--r--source/theme.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/theme.c b/source/theme.c
index 27c9f508..47e7c4a0 100644
--- a/source/theme.c
+++ b/source/theme.c
@@ -861,9 +861,9 @@ gboolean rofi_theme_parse_file ( const char *file )
yyin = fopen ( filename, "rb" );
if ( yyin == NULL ) {
char *str = g_markup_printf_escaped ( "Failed to open theme: <i>%s</i>\nError: <b>%s</b>",
- filename, strerror ( errno ) );
+ filename, strerror ( errno ) );
rofi_add_error_message ( g_string_new ( str ) );
- g_free(str);
+ g_free ( str );
g_free ( filename );
return TRUE;
}