dbry / WavPack

WavPack encode/decode library, command-line programs, and several plugins
BSD 3-Clause "New" or "Revised" License
346 stars 65 forks source link

Silence gcc-9 -Wstringop-truncation warnings: #157

Closed sezero closed 1 year ago

sezero commented 1 year ago
cli/wavpack.c: In function 'main':
cli/wavpack.c:350:5: warning: 'strncpy' specified bound 4096 equals destination size [-Wstringop-truncation]
  350 |     strncpy (selfname, *argv, sizeof (selfname));
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cli/wvunpack.c: In function 'main':
cli/wvunpack.c:288:5: warning: 'strncpy' specified bound 4096 equals destination size [-Wstringop-truncation]
  288 |     strncpy (selfname, *argv, sizeof (selfname));
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
dbry commented 1 year ago

Thanks @sezero !