Fix for issue #1024: arm-linux-androideabi-g++ Compiler Error in /cpuid_arm.c
Line 77: Compiler requires non-void function to return a value
This commit is contained in:
parent
433edc74ab
commit
19934bea8c
|
@ -74,7 +74,7 @@ int get_feature(char *search)
|
|||
fclose(infile);
|
||||
|
||||
|
||||
if( p == NULL ) return;
|
||||
if( p == NULL ) return 0;
|
||||
|
||||
t = strtok(p," ");
|
||||
while( t = strtok(NULL," "))
|
||||
|
|
Loading…
Reference in New Issue