diff options
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 |