diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-09-26 12:48:21 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-09-26 12:48:21 -0400 |
commit | dccb52556730ff060bcccbe764cef4b13b3d5712 (patch) | |
tree | ce71c0bb7a21f6511be8d45af19f722cf46c00ee /src/fsade.c | |
parent | 8864dc5d1b9c85daa58e98c04767d2ee528f2dea (diff) | |
download | bfs-dccb52556730ff060bcccbe764cef4b13b3d5712.tar.xz |
dstring: New dchar typedef for dynamic strings
Diffstat (limited to 'src/fsade.c')
-rw-r--r-- | src/fsade.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fsade.c b/src/fsade.c index c401426..8dec5a8 100644 --- a/src/fsade.c +++ b/src/fsade.c @@ -37,7 +37,7 @@ static const char *fake_at(const struct BFTW *ftwbuf) { static atomic int proc_works = -1; - char *path = NULL; + dchar *path = NULL; if (ftwbuf->at_fd == AT_FDCWD || load(&proc_works, relaxed) == 0) { goto fail; } @@ -69,7 +69,7 @@ fail: static void free_fake_at(const struct BFTW *ftwbuf, const char *path) { if (path != ftwbuf->path) { - dstrfree((char *)path); + dstrfree((dchar *)path); } } |