Changeset 1a86c50 in mainline for uspace/app
- Timestamp:
- 2011-06-02T08:33:23Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d030e0c
- Parents:
- 5bd1ffb
- Location:
- uspace/app
- Files:
-
- 3 edited
-
blkdump/blkdump.c (modified) (3 diffs)
-
ext2info/ext2info.c (modified) (2 diffs)
-
testread/testread.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/blkdump/blkdump.c
r5bd1ffb r1a86c50 202 202 } 203 203 204 / / Print hexadecimal values204 /* Print hexadecimal values */ 205 205 for (pos = 0; pos < length; pos++) { 206 206 if (pos == length/2) { … … 210 210 } 211 211 212 / / pad with spaces if we have less than 16 bytes212 /* Pad with spaces if we have less than 16 bytes */ 213 213 for (pos = length; pos < bytes_per_row; pos++) { 214 214 if (pos == length/2) { … … 218 218 } 219 219 220 / / Print printable characters220 /* Print printable characters */ 221 221 for (pos = 0; pos < length; pos++) { 222 222 if (pos == length/2) { -
uspace/app/ext2info/ext2info.c
r5bd1ffb r1a86c50 95 95 } 96 96 97 / / Skip program name97 /* Skip program name */ 98 98 --argc; ++argv; 99 99 … … 171 171 assert(argc == 1); 172 172 173 / / Display common things by default173 /* Display common things by default */ 174 174 if ((arg_flags & ARG_ALL) == 0) { 175 175 arg_flags = ARG_COMMON; -
uspace/app/testread/testread.c
r5bd1ffb r1a86c50 84 84 } 85 85 86 / / Skip program name86 /* Skip program name */ 87 87 --argc; ++argv; 88 88
Note:
See TracChangeset
for help on using the changeset viewer.
