shell: Add default case to switch statements

... to shut up a compiler warning.
This commit is contained in:
Florian Müllner
2015-09-23 19:10:16 +02:00
parent 9a3041004b
commit 3e10574736
3 changed files with 9 additions and 0 deletions

View File

@ -672,6 +672,9 @@ shell_perf_log_collect_statistics (ShellPerfLog *perf_log)
statistic->recorded = TRUE;
}
break;
default:
g_warning ("Unsupported signature in event");
break;
}
}