summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h
index 7deb5abc4..25012d698 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1166,7 +1166,8 @@ struct file_buffer
char_u *b_fname; /* current file name */
#ifdef UNIX
- dev_t b_dev; /* device number (-1 if not set) */
+ int b_dev_valid; /* TRUE when b_dev has a valid number */
+ dev_t b_dev; /* device number */
ino_t b_ino; /* inode number */
#endif
#ifdef FEAT_CW_EDITOR