• Sam Lantinga's avatar
    Fixed bug #646 · c413a1c5
    Sam Lantinga authored
       Description From  Pavol Rusnak   2008-11-27 05:51:44   (-) [reply]
    
    src/video/fbcon/SDL_fbvideo.c:283: warning: ordered comparison of pointer with
    integer zero
    
    The source code is
    
                   if (fgets(line,length,f)<=0)
    
    Suggest replace with
    
                   if (fgets(line,length,f) == 0)
    
    --HG--
    branch : SDL-1.2
    extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%403534
    c413a1c5
SDL_fbvideo.c 47 KB