diff options
author | David Phillips <dbphillipsnz@gmail.com> | 2015-09-01 19:19:24 +1200 |
---|---|---|
committer | David Phillips <dbphillipsnz@gmail.com> | 2015-09-01 19:19:24 +1200 |
commit | dec1efba06aeadcd9a4f13e8591f2efa016a24a0 (patch) | |
tree | 1293bc4cf8bc8a5acd3f9aef5fbc7215f3689983 /defaults.h | |
parent | 93b76533735fc1d9fd666787acd65db8507d9119 (diff) | |
download | paramano-dec1efba06aeadcd9a4f13e8591f2efa016a24a0.tar.xz |
Replace asprintf calls with snprintf
Diffstat (limited to 'defaults.h')
-rw-r--r-- | defaults.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ char* DEFAULT_PROG; char* DEFAULT_BAT_GOV; char* DEFAULT_AC_GOV; bool DEFAULT_SHOW_BATTERY; -char* DEFAULT_THEME; +char DEFAULT_THEME[1024]; void defaults_init(); |