diff options
author | David <dbphillipsnz@gmail.com> | 2014-05-02 11:42:13 +1200 |
---|---|---|
committer | David <dbphillipsnz@gmail.com> | 2014-05-02 11:42:13 +1200 |
commit | b5d850670d406da072db4b5f77f76c1860aa4734 (patch) | |
tree | 3cd5ae35cc08c76f8fa56cc43eb5ee04dc60fc7a /freq_tray | |
parent | cfcf72f4173d37c4d4fd0d1d5802b3d689501424 (diff) | |
parent | 4bb267e8e416c95fddc59d3c954afc37d9a3f67a (diff) | |
download | paramano-b5d850670d406da072db4b5f77f76c1860aa4734.tar.xz |
Merge branch 'sudo-fix'
Diffstat (limited to 'freq_tray')
-rw-r--r-- | freq_tray/getcore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/freq_tray/getcore.c b/freq_tray/getcore.c index 44b3940..ad4878f 100644 --- a/freq_tray/getcore.c +++ b/freq_tray/getcore.c @@ -32,7 +32,7 @@ static gboolean core_exists(unsigned int core) sprintf(corestr, "%d", core); sprintf(path, "/sys/devices/system/cpu/cpu%s/cpufreq/scaling_cur_freq", corestr); - debug("Checking if core %d exists by opening '%s'",core,path); + debug("Checking if core %d exists by opening '%s'\n",core,path); return (gboolean)(fd = fopen(path, "r")); } |