 
                
        
    var = fscanf( … ) … if( var )or
if( fscanf( … ) )or something to check the return value and handle it in case of an error.
 
                
        
    if(3 != fscanf("Foo: %s %d, %d\n", tmpstr, &tmpx, &tmpy))
    perror("Oh crap!  Invalid data here!"); 
                
        
     
                
        
     
                
        
     
                
        
    
act_wiz.c: In function 'copyover_recover':
act_wiz.c:5459: warning: ignoring return value of 'fscanf', declared with attribute warn_unused_result
Here is the line in question:
The surrounding code is:
Any help would be appreciated here in getting this warning out of the compile.
Thank You in advance.