eggdrop icon indicating copy to clipboard operation
eggdrop copied to clipboard

Fix type mismatch

Open michaelortmann opened this issue 10 months ago • 0 comments

Found by: michaelortmann Patch by: michaelortmann Fixes:

One-line summary:

Additional description (if needed): Fixes the following compiler warning:

modules.c:98:13: warning: type of 'argv0' does not match original declaration [-Wlto-type-mismatch]
   98 | extern char argv0;
      |             ^
./main.c:86:7: note: 'argv0' was previously declared here
   86 | char *argv0;
      |       ^

Test cases demonstrating functionality (if applicable):

michaelortmann avatar Apr 24 '25 07:04 michaelortmann