Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix harmless compiler warning seen with MSVC. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
094fb2ef0cd96dfc4f65ca7aaa95c394 |
| User & Date: | mistachkin 2020-06-08 23:03:58.771 |
Context
|
2020-06-08
| ||
| 23:11 | Fixes and enhancements to SEE integration on Windows. check-in: 57d8a71f42 user: mistachkin tags: trunk | |
| 23:03 | Fix harmless compiler warning seen with MSVC. check-in: 094fb2ef0c user: mistachkin tags: trunk | |
| 22:52 | Fix handling of the 'fossil.exe.manifest' file by the MSVC makefile. check-in: 6acb039c81 user: mistachkin tags: trunk | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
628 629 630 631 632 633 634 | ** This procedure runs first. */ #if defined(FOSSIL_FUZZ) /* Do not include a main() procedure when building for fuzz testing. ** libFuzzer will supply main(). */ #elif defined(_WIN32) && !defined(BROKEN_MINGW_CMDLINE) int _dowildcard = -1; /* This turns on command-line globbing in MinGW-w64 */ | | | 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 |
** This procedure runs first.
*/
#if defined(FOSSIL_FUZZ)
/* Do not include a main() procedure when building for fuzz testing.
** libFuzzer will supply main(). */
#elif defined(_WIN32) && !defined(BROKEN_MINGW_CMDLINE)
int _dowildcard = -1; /* This turns on command-line globbing in MinGW-w64 */
int wmain(int argc, wchar_t **argv){ return fossil_main(argc,(char**)argv); }
#elif defined(_WIN32)
int _CRT_glob = 0x0001; /* See MinGW bug #2062 */
int main(int argc, char **argv){ return fossil_main(argc, argv); }
#else
int main(int argc, char **argv){ return fossil_main(argc, argv); }
#endif
|
| ︙ | ︙ |