diff options
| author | sebres <sebres@users.sourceforge.net> | 2019-06-25 17:45:23 (GMT) |
|---|---|---|
| committer | sebres <sebres@users.sourceforge.net> | 2019-06-25 17:45:23 (GMT) |
| commit | 334b8029eddb4e6df592c5f540ade0fd957a72c1 (patch) | |
| tree | d9349cc5c8fccc2f12d5f03873d7171a321fe7d0 | |
| parent | be26adf83b00a077251c7242792c50c23fa0baa7 (diff) | |
| download | tcl-334b8029eddb4e6df592c5f540ade0fd957a72c1.zip tcl-334b8029eddb4e6df592c5f540ade0fd957a72c1.tar.gz tcl-334b8029eddb4e6df592c5f540ade0fd957a72c1.tar.bz2 | |
nmakehlp: fixed const qualifier
| -rw-r--r-- | win/nmakehlp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/nmakehlp.c b/win/nmakehlp.c index 0439d1c..6532f8a 100644 --- a/win/nmakehlp.c +++ b/win/nmakehlp.c @@ -74,7 +74,7 @@ main( char msg[300]; DWORD dwWritten; int chars; - char *s; + const char *s; /* * Make sure children (cl.exe and link.exe) are kept quiet. |
