aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/regex-emacs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex-emacs.c b/src/regex-emacs.c
index 0ec0c6eb63f..92dbdbecbf1 100644
--- a/src/regex-emacs.c
+++ b/src/regex-emacs.c
@@ -341,7 +341,7 @@ typedef enum
341/* Store NUMBER in two contiguous bytes starting at DESTINATION. */ 341/* Store NUMBER in two contiguous bytes starting at DESTINATION. */
342 342
343static void 343static void
344STORE_NUMBER (unsigned char *destination, int16_t number) 344STORE_NUMBER (unsigned char *destination, int number)
345{ 345{
346 (destination)[0] = (number) & 0377; 346 (destination)[0] = (number) & 0377;
347 (destination)[1] = (number) >> 8; 347 (destination)[1] = (number) >> 8;