summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-10-31 19:36:13 +0100
committerDave Davenport <qball@gmpclient.org>2017-10-31 19:36:13 +0100
commit0ef2ad0771e003f1170368703d988664a943f12f (patch)
treebdcebb943573d3949e27a2b1651930c7275527b5
parentba0acd625fecfb2aa823a748b295655e3a664ce0 (diff)
Use PACKAGE_VERSION as it is known to both make and meson.
-rw-r--r--source/theme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/theme.c b/source/theme.c
index a45e8ee2..e0a5dfbb 100644
--- a/source/theme.c
+++ b/source/theme.c
@@ -320,7 +320,7 @@ static void rofi_theme_print_index ( ThemeWidget *widget )
void rofi_theme_print ( ThemeWidget *widget )
{
if ( widget != NULL ) {
- printf("/**\n * rofi -dump-theme output.\n * Rofi version: %s\n **/\n", VERSION);
+ printf("/**\n * rofi -dump-theme output.\n * Rofi version: %s\n **/\n", PACKAGE_VERSION);
rofi_theme_print_index ( widget );
}
}