diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2010-08-28 17:48:02 -0400 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2010-08-28 17:48:02 -0400 |
commit | e08ae186b6466f20dd532e377f0ae5aede165830 (patch) | |
tree | 75d87fe7140a6f2a33baeb26d43d0020561eb9b4 /defaults.h | |
parent | 697af8df3298acfe7d4b5d524f758cdf6f5ec8a7 (diff) |
g_build_path is supposed to end with a NULL element http://library.gnome.org/devel/glib/unstable/glib-Miscellaneous-Utility-Functions.html
Diffstat (limited to 'defaults.h')
-rw-r--r-- | defaults.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ #ifndef DEFAULT_CONFIG_FILE -#define DEFAULT_CONFIG_FILE g_build_path("/", g_get_home_dir(), ".svterc") +#define DEFAULT_CONFIG_FILE g_build_path("/", g_get_home_dir(), ".svterc", NULL); #endif #ifndef DEFAULT_FONT #define DEFAULT_FONT "monospace 10" |