summaryrefslogtreecommitdiffstats
path: root/programs/fuzzer.c
diff options
context:
space:
mode:
Diffstat (limited to 'programs/fuzzer.c')
-rw-r--r--programs/fuzzer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/fuzzer.c b/programs/fuzzer.c
index 7b06cbe..a2bd33a 100644
--- a/programs/fuzzer.c
+++ b/programs/fuzzer.c
@@ -145,7 +145,7 @@ int main() {
fflush(stdout);
if ( fgets(userInput, sizeof userInput, stdin) )
{
- if ( sscanf(userInput, "%d", &seed) == 1 ) {}
+ if ( sscanf(userInput, "%u", &seed) == 1 ) {}
else seed = FUZ_GetMilliSpan(timestamp);
}
printf("Seed = %u\n", seed);