diff options
author | Ilya Shipitsin <chipitsine@gmail.com> | 2020-01-27 05:12:31 +0500 |
---|---|---|
committer | Eric Curtin <ericcurtin17@gmail.com> | 2020-01-27 00:12:31 +0000 |
commit | 6190fc48d9b1392f167e5967f5aa1c9649651106 (patch) | |
tree | 8ac1ad9115d5f486f2a07d48722a89ac55ff8ca5 | |
parent | 87ebbd2a625560e4f34de149149466b2f1b98df3 (diff) | |
download | inotify-tools-6190fc48d9b1392f167e5967f5aa1c9649651106.zip inotify-tools-6190fc48d9b1392f167e5967f5aa1c9649651106.tar.gz inotify-tools-6190fc48d9b1392f167e5967f5aa1c9649651106.tar.bz2 |
remove redundant assignment (detected by clang) (#93)
-rw-r--r-- | libinotifytools/src/redblack.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libinotifytools/src/redblack.c b/libinotifytools/src/redblack.c index 9e9a153..f8620a0 100644 --- a/libinotifytools/src/redblack.c +++ b/libinotifytools/src/redblack.c @@ -140,9 +140,6 @@ RB_STATIC struct RB_ENTRY(tree) *RB_ENTRY(init)(void) #endif /* RB_CUSTOMIZE */ { struct RB_ENTRY(tree) *retval; - char c; - - c=rcsid[0]; /* This does nothing but shutup the -Wall */ if ((retval=(struct RB_ENTRY(tree) *) malloc(sizeof(struct RB_ENTRY(tree))))==NULL) return(NULL); |