diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-05-09 15:33:00 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-05-09 15:33:00 -0400 |
commit | 1a3ee71de258b416ca6b80f0a9e3b91460df8dc7 (patch) | |
tree | a59167e50add55b51ed31c65944cfa78ddd1c290 /src/if_cscope_defs.h | |
parent | f3dda65de157f2d7c35286018c20cbc7597ed748 (diff) | |
parent | eae498c4c5d34c1d0af40ecb430cbbc23b0a8e97 (diff) | |
download | rneovim-1a3ee71de258b416ca6b80f0a9e3b91460df8dc7.tar.gz rneovim-1a3ee71de258b416ca6b80f0a9e3b91460df8dc7.tar.bz2 rneovim-1a3ee71de258b416ca6b80f0a9e3b91460df8dc7.zip |
Merge pull request #619 from stefan991/mch_stat-cleanup
Replace `struct stat` with `FileInfo`
Diffstat (limited to 'src/if_cscope_defs.h')
-rw-r--r-- | src/if_cscope_defs.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/if_cscope_defs.h b/src/if_cscope_defs.h index 7a60da20dd..3c64067795 100644 --- a/src/if_cscope_defs.h +++ b/src/if_cscope_defs.h @@ -51,10 +51,9 @@ typedef struct csi { char * flags; /* additional cscope flags/options (e.g, -p2) */ #if defined(UNIX) pid_t pid; /* PID of the connected cscope process. */ - dev_t st_dev; /* ID of dev containing cscope db */ - ino_t st_ino; /* inode number of cscope db */ -#else #endif + uint64_t st_dev; /* ID of dev containing cscope db */ + uint64_t st_ino; /* inode number of cscope db */ FILE * fr_fp; /* from cscope: FILE. */ FILE * to_fp; /* to cscope: FILE. */ |