diff options
author | Ron Yorston <rmy@pobox.com> | 2017-05-29 14:20:10 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2017-05-29 14:34:28 +0100 |
commit | da4f331955bed8afda670afcd58d524a04a0faa9 (patch) | |
tree | f6a3879aefdd714240f8c022375f687b512d2238 /miscutils/less.c | |
parent | 74163a535fd21f5fcca4c052d2e7c192d3e264fa (diff) | |
parent | 6683d1cbb44859f549f87f882545b84b9369585c (diff) | |
download | busybox-w32-da4f331955bed8afda670afcd58d524a04a0faa9.tar.gz busybox-w32-da4f331955bed8afda670afcd58d524a04a0faa9.tar.bz2 busybox-w32-da4f331955bed8afda670afcd58d524a04a0faa9.zip |
Merge branch 'busybox' into merge
Diffstat (limited to 'miscutils/less.c')
-rw-r--r-- | miscutils/less.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/less.c b/miscutils/less.c index 220e2c693..16be1447e 100644 --- a/miscutils/less.c +++ b/miscutils/less.c | |||
@@ -271,7 +271,7 @@ struct globals { | |||
271 | /* flines[] are lines read from stdin, each in malloc'ed buffer. | 271 | /* flines[] are lines read from stdin, each in malloc'ed buffer. |
272 | * Line numbers are stored as uint32_t prepended to each line. | 272 | * Line numbers are stored as uint32_t prepended to each line. |
273 | * Pointer is adjusted so that flines[i] points directly past | 273 | * Pointer is adjusted so that flines[i] points directly past |
274 | * line number. Accesor: */ | 274 | * line number. Accessor: */ |
275 | #define MEMPTR(p) ((char*)(p) - 4) | 275 | #define MEMPTR(p) ((char*)(p) - 4) |
276 | #define LINENO(p) (*(uint32_t*)((p) - 4)) | 276 | #define LINENO(p) (*(uint32_t*)((p) - 4)) |
277 | 277 | ||