appease clang self-assignment warning

This commit is contained in:
Kamal Mostafa 2015-08-23 09:12:34 -07:00
parent ed8e633af0
commit d002c60a92
1 changed files with 2 additions and 1 deletions

View File

@ -290,7 +290,8 @@ benchmarks()
int ret;
ret = system("sed -n -e '/^model name/{p;q}' -e '/^cpu model/{p;q}' /proc/cpuinfo");
ret = ret; // don't care, hush compiler.
if ( ret )
; // don't care, hush compiler.
fflush(stdout);