Changes in uspace/lib/draw/font/pcf.c [d5c1051:23c8acd9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/draw/font/pcf.c
rd5c1051 r23c8acd9 36 36 #include <stddef.h> 37 37 #include <stdint.h> 38 #include <malloc.h> 38 39 #include <errno.h> 39 40 #include <byteorder.h> … … 41 42 #include <align.h> 42 43 #include <offset.h> 43 #include <stdlib.h>44 44 45 45 #include "pcf.h" … … 268 268 (glyph_id * sizeof(uint32_t)); 269 269 270 if (fseek(data->file, offset, SEEK_SET) < 0) 270 rc = fseek(data->file, offset, SEEK_SET); 271 if (rc != 0) 271 272 return errno; 272 273 … … 283 284 + bitmap_offset; 284 285 285 if (fseek(data->file, offset, SEEK_SET) < 0) 286 rc = fseek(data->file, offset, SEEK_SET); 287 if (rc != 0) 286 288 return errno; 287 289
Note:
See TracChangeset
for help on using the changeset viewer.