diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2013-02-28 07:16:10 +0200 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2013-02-28 07:16:10 +0200 |
commit | ea6ef46978a7ebf5fc84a5f34592ac874d2647b4 (patch) | |
tree | 232b6353321c982a529b4e6d2d5bbd455c6178a8 /sound_detector/main.cpp | |
parent | 17faa9f960aa7f1ce72e6b54a2d01f755d7b38be (diff) |
cosmetic fixes
Diffstat (limited to 'sound_detector/main.cpp')
-rw-r--r-- | sound_detector/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound_detector/main.cpp b/sound_detector/main.cpp index 295dc20..ca8b804 100644 --- a/sound_detector/main.cpp +++ b/sound_detector/main.cpp @@ -291,7 +291,7 @@ int main(int argc, char **argv) const PaDeviceInfo *info = Pa_GetDeviceInfo(i); //windows #ifdef WIN32 - char *name = to_utf8(info->name); + char *name = change_charset(info->name); printf("%d. %s, input channels %d, output channels %d, default sample rate %f, lowest input latency %f, highest input latency %f\n", i, name, info->maxInputChannels, info->maxOutputChannels, info->defaultSampleRate, info->defaultLowInputLatency, info->defaultHighInputLatency); free(name); |