| Summary: | SDL: ordered comparison of pointer with integer zero | ||
|---|---|---|---|
| Product: | SDL | Reporter: | Pavol Rusnak <stick> |
| Component: | video | Assignee: | Ryan C. Gordon <icculus> |
| Status: | RESOLVED FIXED | QA Contact: | Sam Lantinga <slouken> |
| Severity: | trivial | ||
| Priority: | P2 | CC: | sezeroz |
| Version: | 1.2.13 | ||
| Hardware: | All | ||
| OS: | All | ||
| URL: | https://bugzilla.novell.com/show_bug.cgi?id=433366 | ||
Thanks, this is fixed in revision 4434. |
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)