Skip to content

Commit

Permalink
Fix warnings, only major one being an SDL_SetError not providing enou…
Browse files Browse the repository at this point in the history
…gh arguments.
  • Loading branch information
BrandonSchaefer committed Jun 5, 2014
1 parent 6671aa2 commit 1f71676
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/audio/SDL_wave.c
Expand Up @@ -343,7 +343,7 @@ IMA_ADPCM_decode(Uint8 ** audio_buf, Uint32 * audio_len)
/* Check to make sure we have enough variables in the state array */
channels = IMA_ADPCM_state.wavefmt.channels;
if (channels > SDL_arraysize(IMA_ADPCM_state.state)) {
SDL_SetError("IMA ADPCM decoder can only handle %d channels",
SDL_SetError("IMA ADPCM decoder can only handle %zu channels",
SDL_arraysize(IMA_ADPCM_state.state));
return (-1);
}
Expand Down
2 changes: 1 addition & 1 deletion src/filesystem/unix/SDL_sysfilesystem.c
Expand Up @@ -197,7 +197,7 @@ SDL_GetPrefPath(const char *org, const char *app)
}
if (mkdir(retval, 0700) != 0 && errno != EEXIST) {
error:
SDL_SetError("Couldn't create directory '%s': ", retval, strerror(errno));
SDL_SetError("Couldn't create directory '%s': '%s'", retval, strerror(errno));
SDL_free(retval);
return NULL;
}
Expand Down
2 changes: 1 addition & 1 deletion src/test/SDL_test_harness.c
Expand Up @@ -564,7 +564,7 @@ int SDLTest_RunSuites(SDLTest_TestSuiteReference *testSuites[], const char *user
execKey = SDLTest_GenerateExecKey((char *)runSeed, testSuite->name, testCase->name, iterationCounter);
}

SDLTest_Log("Test Iteration %i: execKey %llu", iterationCounter, execKey);
SDLTest_Log("Test Iteration %i: execKey %" PRIu64 "", iterationCounter, execKey);
testResult = SDLTest_RunTest(testSuite, testCase, execKey);

if (testResult == TEST_RESULT_PASSED) {
Expand Down
2 changes: 1 addition & 1 deletion src/thread/pthread/SDL_syssem.c
Expand Up @@ -150,7 +150,7 @@ SDL_SemWaitTimeout(SDL_sem * sem, Uint32 timeout)
if (errno == ETIMEDOUT) {
retval = SDL_MUTEX_TIMEDOUT;
} else {
SDL_SetError(strerror(errno));
SDL_SetError("sem_timedwait returned an error: %s", strerror(errno));
}
}
#else
Expand Down

0 comments on commit 1f71676

Please sign in to comment.