mirror of
https://gitee.com/openharmony/third_party_libsnd
synced 2024-11-23 01:49:53 +00:00
src/common.c: psf_log_printf should not emit ASCII control characters with %M
This commit is contained in:
parent
1534936c10
commit
e2c38cd5c4
@ -375,7 +375,7 @@ psf_log_printf (SF_PRIVATE *psf, const char *format, ...)
|
||||
strptr = istr ;
|
||||
while (*strptr)
|
||||
{ c = *strptr++ ;
|
||||
log_putchar (psf, c) ;
|
||||
log_putchar (psf, psf_isprint (c) ? c : '.') ;
|
||||
} ;
|
||||
break ;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user