Index: uspace/lib/draw/font/pcf.c
===================================================================
--- uspace/lib/draw/font/pcf.c	(revision 38d150e6238ab44c861f6486e46454e07caeb0f0)
+++ uspace/lib/draw/font/pcf.c	(revision 39b54fe7194b1ffcbd629620649e5551d1fef2ea)
@@ -268,6 +268,5 @@
 	    (glyph_id * sizeof(uint32_t));
 	
-	rc = fseek(data->file, offset, SEEK_SET);
-	if (rc != 0)
+	if (fseek(data->file, offset, SEEK_SET) < 0)
 		return errno;
 	
@@ -284,6 +283,5 @@
 	    + bitmap_offset;
 	
-	rc = fseek(data->file, offset, SEEK_SET);
-	if (rc != 0)
+	if (fseek(data->file, offset, SEEK_SET) < 0)
 		return errno;
 	
