We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b67dbd5 commit 2647a17Copy full SHA for 2647a17
plugins/cpufreq/cpufreq.c
@@ -304,7 +304,7 @@ cpufreq_menu(cpufreq *cf){
304
for( l = cf->governors; l; l = l->next )
305
{
306
if(strcmp((char*)l->data, cf->cur_governor) == 0){
307
- snprintf(buff, sizeof(buff), "▸ %s", l->data);
+ snprintf(buff, sizeof(buff), "▸ %s", l->data);
308
menuitem = GTK_MENU_ITEM(gtk_menu_item_new_with_label(strdup(buff)));
309
}else{
310
snprintf(buff, sizeof(buff), " %s", l->data);
0 commit comments