Browse Source

windows: Fix API test (pathsep)

master
Yury Popov 2 years ago
parent
commit
5d547e2676
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      tests/api.c

+ 1
- 1
tests/api.c View File

@@ -630,7 +630,7 @@ main(int argc, char **argv)
(void)argc; // unused parameter

char *progdir = strdup(argv[0]);
char *dir = strrchr(progdir, '/');
char *dir = strrchr(progdir, PATHSEP);
if (dir != NULL) *dir = 0;

test_espeak_terminate_without_initialize();

Loading…
Cancel
Save