diff options
author | François Perrad <francois.perrad@gadz.org> | 2018-03-03 04:06:45 +0100 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2018-03-03 11:06:45 +0800 |
commit | 257bba00ac1c1461b18ff1f5d420ec83fa13a368 (patch) | |
tree | 8156f6443adbd45eacfa1059c358baf6be0708ee /dbutil.c | |
parent | ce1f9cdf7c27bb877d8efd3048af6e5ea513d09a (diff) |
some linting after fuzz merge (#60)
* fix prototype
* remove extra comma
* use m_free after m_strdup
Diffstat (limited to 'dbutil.c')
-rw-r--r-- | dbutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -687,6 +687,6 @@ void fsync_parent_dir(const char* fn) { TRACE(("error opening directory %s for fsync: %s", dir, strerror(errno))) } - free(fn_dir); + m_free(fn_dir); #endif } |