251
252 g_curr_sugg = n;
253
254 return;
255 }
256 }
257
258 /*
259 * All suggestions have run out of slice quotas, so we restart.
260 */
261 for (n = sugg; n != NULL; n = n->next)
262 n->slice = 0;
263
264 goto search;
265 }
266
267 void
268 pt_sugg_as_root(void)
269 {
270 pt_sugg_add("Suggestion: run as root to get suggestions"
271 " for reducing system power consumption", 40, NULL, NULL,
272 NULL);
273 }
|
251
252 g_curr_sugg = n;
253
254 return;
255 }
256 }
257
258 /*
259 * All suggestions have run out of slice quotas, so we restart.
260 */
261 for (n = sugg; n != NULL; n = n->next)
262 n->slice = 0;
263
264 goto search;
265 }
266
267 void
268 pt_sugg_as_root(void)
269 {
270 pt_sugg_add("Suggestion: run as root to get suggestions"
271 " for reducing system power consumption", 40, '\0', NULL,
272 NULL);
273 }
|