Skip to content

Commit 8f37c6e

Browse files
committed
Fix a compile warning in non-Linux case
There was no return value if it wasn't Linux. Now returning "N/A"
1 parent c199aac commit 8f37c6e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

mythtv/libs/libmythtv/jitterometer.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,5 +177,7 @@ QString Jitterometer::GetCPUStat(void)
177177
ptr += 9;
178178
}
179179
return res;
180+
#else
181+
return "N/A";
180182
#endif
181183
}

0 commit comments

Comments
 (0)