Also mark argv as unused in test/bidirectional.c - libgrapheme - unicode string… | |
git clone git://git.suckless.org/libgrapheme | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 3a735213d6da553d9235c5cad2732048242ada97 | |
parent 64c136162a2830374522b993df86d8a0a852422a | |
Author: Laslo Hunhold <[email protected]> | |
Date: Tue, 15 Nov 2022 15:32:15 +0100 | |
Also mark argv as unused in test/bidirectional.c | |
Signed-off-by: Laslo Hunhold <[email protected]> | |
Diffstat: | |
M benchmark/bidirectional.c | 1 + | |
1 file changed, 1 insertion(+), 0 deletions(-) | |
--- | |
diff --git a/benchmark/bidirectional.c b/benchmark/bidirectional.c | |
@@ -15,6 +15,7 @@ int | |
main(int argc, char *argv[]) | |
{ | |
(void)argc; | |
+ (void)argv; | |
return 0; | |
} |