diff options
author | David <dbphillipsnz@gmail.com> | 2014-09-27 17:49:13 +1200 |
---|---|---|
committer | David <dbphillipsnz@gmail.com> | 2014-09-27 17:49:13 +1200 |
commit | ae241b32b4062a15d2fbdc1a225710b5e93c2873 (patch) | |
tree | c9e510b8277654ceb099ea25793e1375d5d546cf /defaults.h | |
parent | 0151fd3792e68c54b8eb776f8196e572cb7e8457 (diff) | |
download | paramano-ae241b32b4062a15d2fbdc1a225710b5e93c2873.tar.xz |
Naughty Phillid, underscore-prefixed variable names are bad!
Diffstat (limited to 'defaults.h')
-rw-r--r-- | defaults.h | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -22,13 +22,13 @@ #include <stdbool.h> /* boolean types */ #include <stdlib.h> /* NULL */ -char* _DEFAULT_GOV; -char* _DEFAULT_FREQ; -char* _DEFAULT_PROG; -char* _DEFAULT_BAT_GOV; -char* _DEFAULT_AC_GOV; -bool _DEFAULT_SHOW_BATTERY; -char* _DEFAULT_THEME; +char* DEFAULT_GOV; +char* DEFAULT_FREQ; +char* DEFAULT_PROG; +char* DEFAULT_BAT_GOV; +char* DEFAULT_AC_GOV; +bool DEFAULT_SHOW_BATTERY; +char* DEFAULT_THEME; void defaults_init(); |