Skip to content

Commit

Permalink
Fix typo and incorrect string formatting.
Browse files Browse the repository at this point in the history
Forgot a comma and incorrectly used %s instead of %i.  Copy-Paste FAIL :p
  • Loading branch information
android-808 committed Sep 16, 2012
1 parent acce2f4 commit c61d32a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/conkyrc_sls.c
Expand Up @@ -125,7 +125,7 @@ void conkyrc_sls () {
fprintf(fp,"%s ", weather_code );

//BATTERY
fprintf(fp,"%s " battery_value );
fprintf(fp,"%i ", battery_value );

fprintf(fp,"\n");
fprintf(fp,"\n");
Expand Down

0 comments on commit c61d32a

Please sign in to comment.