diff options
| author | Richard M. Stallman | 1998-01-05 17:32:08 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-01-05 17:32:08 +0000 |
| commit | 797ddf5794adb41ca6af668320608e7ed9d7bdc5 (patch) | |
| tree | 5c4eb021fa71d43850553ca61ed178f35b72988f /src | |
| parent | 10d077421013ae6531c3ab2a074ff58c03f985c0 (diff) | |
| download | emacs-797ddf5794adb41ca6af668320608e7ed9d7bdc5.tar.gz emacs-797ddf5794adb41ca6af668320608e7ed9d7bdc5.zip | |
(MAKE_LOCK_NAME): Use size_byte.
Diffstat (limited to 'src')
| -rw-r--r-- | src/filelock.c | 2 |
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 | ||
| 106 | static void | 106 | static void |