diff options
| author | minux <minux.ma@gmail.com> | 2014-04-11 23:49:53 -0400 |
|---|---|---|
| committer | minux <minux.ma@gmail.com> | 2014-04-11 23:49:53 -0400 |
| commit | df0267b28799422393bfa70b5cf76608923ad8e7 (patch) | |
| tree | 7d3cc0d05944b0f16ae7dc190806d4bc7c338e95 /tcc.c | |
| parent | bba1c381f4f9862f0c9ce4afc7705ac9a624842f (diff) | |
| download | tinycc-df0267b28799422393bfa70b5cf76608923ad8e7.tar.gz tinycc-df0267b28799422393bfa70b5cf76608923ad8e7.tar.bz2 | |
tcc, libtcc: fix build on windows with latest mingw.
Diffstat (limited to 'tcc.c')
| -rw-r--r-- | tcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -78,7 +78,7 @@ static void help(void) #include <process.h> static int execvp_win32(const char *prog, char **argv) { - int ret = spawnvp(P_NOWAIT, prog, (char *const*)argv); + int ret = spawnvp(P_NOWAIT, prog, (const char *const*)argv); if (-1 == ret) return ret; cwait(&ret, ret, WAIT_CHILD); |
