aboutsummaryrefslogtreecommitdiff
path: root/trayfreq.c
diff options
context:
space:
mode:
authorDavid <dbphillipsnz@gmail.com>2014-06-04 20:40:30 +1200
committerDavid <dbphillipsnz@gmail.com>2014-06-06 20:31:40 +1200
commitb541698306f141de7ba31e0045e01c1ef04d9de4 (patch)
tree26a916db79d3a29f3d29561852a5a8577838b4ec /trayfreq.c
parent38f928b2f33ec527490899e580e5ee1327a327e9 (diff)
downloadparamano-b541698306f141de7ba31e0045e01c1ef04d9de4.tar.xz
Tidy-up
Diffstat (limited to 'trayfreq.c')
-rw-r--r--trayfreq.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/trayfreq.c b/trayfreq.c
index 8213e06..8433bba 100644
--- a/trayfreq.c
+++ b/trayfreq.c
@@ -57,7 +57,7 @@ int main(int argc, char** argv)
if (sigaction(SIGUSR1, &sig_act, NULL) == -1)
{
- debug("WARN: Couldn't set sigaction for SIGUSR1\n");
+ debug("Couldn't set sigaction for SIGUSR1\n");
}
config_init();
gc_init();
@@ -106,7 +106,7 @@ void config_init()
}
if(!home_config_exists)
- config.file_name = g_strconcat("/usr/share/trayfreq/trayfreq.conf", NULL);
+ config.file_name = g_strconcat(TRAYFREQ_CONF, NULL);
gboolean success = config_open(&config);
if(!success)
@@ -128,7 +128,7 @@ void config_init()
if (temp)
_DEFAULT_SHOW_BATTERY = ( temp[0] == '1' );
- info("Running as UID %d and GID %d\n", getuid(), getgid());
+ info("UID: %d GID: %d\n", getuid(), getgid());
temp = config_get_key(&config, "extra", "theme");
if (temp && strlen(temp) < sizeof(_DEFAULT_THEME) )