aboutsummaryrefslogtreecommitdiff
path: root/miscutils/less.c
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2017-05-29 14:20:10 +0100
committerRon Yorston <rmy@pobox.com>2017-05-29 14:34:28 +0100
commitda4f331955bed8afda670afcd58d524a04a0faa9 (patch)
treef6a3879aefdd714240f8c022375f687b512d2238 /miscutils/less.c
parent74163a535fd21f5fcca4c052d2e7c192d3e264fa (diff)
parent6683d1cbb44859f549f87f882545b84b9369585c (diff)
downloadbusybox-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.c2
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