diff options
| author | 2010-04-23 21:01:52 +0000 | |
|---|---|---|
| committer | 2010-04-23 21:01:52 +0000 | |
| commit | 0bdba8491b9039c4dfc3948b3a520b8b69c69b81 (patch) | |
| tree | 5445c34e428e4add0cd78a7df14c07b08d9a3ce4 /src/tools | |
| parent | 493315be0d1d2c166faa95829341620156592507 (diff) | |
Fixed linking of chdman.exe and romcmp.exe with Visual
Studio. [Oliver Stoneberg]
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/chdman.c | 2 | ||||
| -rw-r--r-- | src/tools/romcmp.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/chdman.c b/src/tools/chdman.c index eac2364fa0d..9868ec91dcc 100644 --- a/src/tools/chdman.c +++ b/src/tools/chdman.c @@ -3307,7 +3307,7 @@ static chd_error chdman_clone_metadata(chd_file *source, chd_file *dest) main - entry point -------------------------------------------------*/ -int CLIB_DECL main(int argc, char **argv) +int CLIB_DECL main(int argc, char *argv[]) { static const struct { diff --git a/src/tools/romcmp.c b/src/tools/romcmp.c index 71725fc1fae..a164a163fc4 100644 --- a/src/tools/romcmp.c +++ b/src/tools/romcmp.c @@ -553,7 +553,7 @@ static int load_files(int i, int *found, const char *path) } -int CLIB_DECL main(int argc,char **argv) +int CLIB_DECL main(int argc,char *argv[]) { int err; int total_modes = MODE_NIB2; /* by default, use only MODE_A, MODE_NIB1 and MODE_NIB2 */ |
