* Fix various warnings with GCC and clang

This commit is contained in:
Tim Angus 2011-10-27 21:32:28 +00:00
parent 675e7a641a
commit fd986dae06
8 changed files with 31 additions and 22 deletions

View file

@ -115,7 +115,7 @@ int mumble_link(const char* name)
close(shmfd);
#endif
memset(lm, 0, sizeof(LinkedMem));
mbstowcs(lm->name, name, sizeof(lm->name));
mbstowcs(lm->name, name, sizeof(lm->name) / sizeof(wchar_t));
return 0;
}