Also mark argv as unused in test/bidirectional.c - libgrapheme - unicode string library
HTML git clone git://git.suckless.org/libgrapheme
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 3a735213d6da553d9235c5cad2732048242ada97
DIR parent 64c136162a2830374522b993df86d8a0a852422a
HTML Author: Laslo Hunhold <dev@frign.de>
Date: Tue, 15 Nov 2022 15:32:15 +0100
Also mark argv as unused in test/bidirectional.c
Signed-off-by: Laslo Hunhold <dev@frign.de>
Diffstat:
M benchmark/bidirectional.c | 1 +
1 file changed, 1 insertion(+), 0 deletions(-)
---
DIR 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;
}