Overview
Comment: | Supress a warning |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
d058c6c7f8c7c621620a54f32ec0956d |
User & Date: | rkeene on 2019-09-17 19:04:10 |
Other Links: | manifest | tags |
Context
2019-09-17
| ||
19:13 | Updated Makefile to support better testing and using user-defined tclConfig.sh check-in: 55084356ba user: rkeene tags: trunk | |
19:04 | Supress a warning check-in: d058c6c7f8 user: rkeene tags: trunk | |
16:40 | Updated ignores check-in: 2b232db6ee user: rkeene tags: trunk | |
Changes
Modified xvfs-core.c from [0714660302] to [380fb5f221].
︙ | ︙ | |||
1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 | } else { retval = NULL; XVFS_DEBUG_PUTS("... found no registered filesystem."); } XVFS_DEBUG_LEAVE; return(retval); } static int xvfs_tclfs_dispatch_stat(Tcl_Obj *path, Tcl_StatBuf *statBuf) { struct xvfs_tclfs_instance_info *instanceInfo; instanceInfo = xvfs_tclfs_dispatch_pathToInfo(path); if (!instanceInfo) { | > > > > > > > > | 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 | } else { retval = NULL; XVFS_DEBUG_PUTS("... found no registered filesystem."); } XVFS_DEBUG_LEAVE; return(retval); /* * UNREACH: We do no need the more specific check because we * claim everything under the root, but we want to suppress * a warning about it not being used. */ xvfs_tclfs_pathInFilesystem(NULL, NULL, NULL); return(NULL); } static int xvfs_tclfs_dispatch_stat(Tcl_Obj *path, Tcl_StatBuf *statBuf) { struct xvfs_tclfs_instance_info *instanceInfo; instanceInfo = xvfs_tclfs_dispatch_pathToInfo(path); if (!instanceInfo) { |
︙ | ︙ |