Resolve unused variable on FreeBSD

This commit is contained in:
Christian Göttsche
2020-09-08 14:58:29 +02:00
committed by cgzones
parent e719a85994
commit 475f729a36
2 changed files with 2 additions and 2 deletions

View File

@ -205,10 +205,12 @@ void Platform_setZfsCompressedArcValues(Meter* this) {
}
void Platform_setTasksValues(Meter* this) {
(void) this;
// TODO
}
char* Platform_getProcessEnv(pid_t pid) {
(void) pid;
// TODO
return NULL;
}