diff options
| author | Francois-Olivier Devaux <fodevaux@users.noreply.github.com> | 2005-03-25 13:44:16 +0000 |
|---|---|---|
| committer | Francois-Olivier Devaux <fodevaux@users.noreply.github.com> | 2005-03-25 13:44:16 +0000 |
| commit | 7e2e09e2a97313f0b517685cdcc4d79da0875ff6 (patch) | |
| tree | 9fda4daab82c65d93ab2158b50df96b998c08183 /mj2 | |
| parent | 86ce4d4c18cd924703a71c9096edcf0cc0e2d87a (diff) | |
Replaced unlink() with remove()
Diffstat (limited to 'mj2')
| -rw-r--r-- | mj2/frames_to_mj2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mj2/frames_to_mj2.c b/mj2/frames_to_mj2.c index 27fad274..efbf218b 100644 --- a/mj2/frames_to_mj2.c +++ b/mj2/frames_to_mj2.c @@ -981,9 +981,9 @@ int main(int argc, char **argv) free(cp.tcps); fclose(mj2file); free(buf); - unlink("Compo0"); - unlink("Compo1"); - unlink("Compo2"); + remove("Compo0"); + remove("Compo1"); + remove("Compo2"); //MEMORY LEAK #ifdef _DEBUG |
