njh / rotter

Rotter is a Recording of Transmission / Audio Logger for JACK.
http://www.aelius.com/njh/rotter/
GNU General Public License v2.0
50 stars 11 forks source link

Add missing argument to vprintf() in deletefiles_in_dir() #36

Closed paraenggu closed 6 years ago

paraenggu commented 6 years ago

If dp->d_type is not DT_DIR or DT_REG within deletefiles_in_dir() the following error message will be printed: "Warning: not a file or a directory: %s". However, %s will never be substituted, as the argument to the underlying vprintf() call is missing.

This PR fixes the %s substitution by passing the value of newpath.

njh commented 6 years ago

Thanks!