Cpuclock: Don't debug print the exec string.

This commit is contained in:
Stephen 'Okra' Houston 2017-07-12 16:07:58 -05:00
parent 9e7b78ffab
commit 392d12bafd
1 changed files with 0 additions and 2 deletions

View File

@ -89,12 +89,10 @@ _cpuclock_set_governor(const char *governor)
snprintf(exe, 4096, "%s/%s/cpuclock_sysfs",
e_module_dir_get(sysinfo_config->module), MODULE_ARCH);
printf("%s\n", exe);
if (stat(exe, &st) < 0) return;
snprintf(buf, sizeof(buf),
"%s %s %s", exe, "governor", governor);
printf("%s\n", buf);
system(buf);
}