Changeset 153 for sbliveos2/trunk/sblive/cardwo.c
- Timestamp:
- Jul 23, 2000, 6:21:57 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sbliveos2/trunk/sblive/cardwo.c
r152 r153 612 612 k = (len > PAGE_SIZE - j) ? PAGE_SIZE - j : len; 613 613 #ifdef TARGET_OS2 614 memset((u8 *)pt[i] + j, val, k); 614 if(k) { 615 memset((u8 *)pt[i] + j, val, k); 616 } 615 617 #else 616 618 memset(pt[i] + j, val, k); … … 621 623 len -= PAGE_SIZE; 622 624 } 625 #ifdef TARGET_OS2 626 if(len) 627 #endif 623 628 memset(pt[++i], val, len); 624 629
Note:
See TracChangeset
for help on using the changeset viewer.