aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1998-01-05 17:32:08 +0000
committerRichard M. Stallman1998-01-05 17:32:08 +0000
commit797ddf5794adb41ca6af668320608e7ed9d7bdc5 (patch)
tree5c4eb021fa71d43850553ca61ed178f35b72988f /src
parent10d077421013ae6531c3ab2a074ff58c03f985c0 (diff)
downloademacs-797ddf5794adb41ca6af668320608e7ed9d7bdc5.tar.gz
emacs-797ddf5794adb41ca6af668320608e7ed9d7bdc5.zip
(MAKE_LOCK_NAME): Use size_byte.
Diffstat (limited to 'src')
-rw-r--r--src/filelock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filelock.c b/src/filelock.c
index 15b0dcb8c73..a3735bcf101 100644
--- a/src/filelock.c
+++ b/src/filelock.c
@@ -100,7 +100,7 @@ typedef struct
100/* Write the name of the lock file for FN into LFNAME. Length will be 100/* Write the name of the lock file for FN into LFNAME. Length will be
101 that of FN plus two more for the leading `.#' plus one for the null. */ 101 that of FN plus two more for the leading `.#' plus one for the null. */
102#define MAKE_LOCK_NAME(lock, file) \ 102#define MAKE_LOCK_NAME(lock, file) \
103 (lock = (char *) alloca (XSTRING (file)->size + 2 + 1), \ 103 (lock = (char *) alloca (XSTRING (file)->size_byte + 2 + 1), \
104 fill_in_lock_file_name (lock, (file))) 104 fill_in_lock_file_name (lock, (file)))
105 105
106static void 106static void