libsha1 icon indicating copy to clipboard operation
libsha1 copied to clipboard

static num_test

Open BezBSHW opened this issue 1 year ago • 0 comments

test.c:14:8: error: type defaults to ‘int’ in declaration of ‘num_test’ [-Wimplicit-int]
   14 | static num_test;
      |        ^~~~~~~~
make[2]: *** [Makefile:468: test.o] Error 1

Fixed by changing this to static int num_test

BezBSHW avatar Nov 12 '24 07:11 BezBSHW