aboutsummaryrefslogtreecommitdiff
path: root/miscutils/less.c
diff options
context:
space:
mode:
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