Skip to content

Commit

Permalink
test: follow-up to 1e62660; fix copy/paste error.
Browse files Browse the repository at this point in the history
  • Loading branch information
kinetiknz committed Dec 1, 2015
1 parent 1e62660 commit eb30ecd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_tone.cpp
Expand Up @@ -38,9 +38,9 @@ long data_cb(cubeb_stream *stream, void *user, void *buffer, long nframes)
{
struct cb_user_data *u = (struct cb_user_data *)user;
#if (defined(_WIN32) || defined(__WIN32__))
short *b = (short *)buffer;
#else
float *b = (float *)buffer;
#else
short *b = (short *)buffer;
#endif
float t1, t2;
int i;
Expand Down

0 comments on commit eb30ecd

Please sign in to comment.