libafl_ar: fix error message (#2833)

This commit is contained in:
s1341 2025-01-14 10:34:52 +02:00 committed by GitHub
parent d8460d14a2
commit 8adb2aa7b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,11 +25,11 @@ pub fn main() {
Configuration::UndefinedBehaviorSanitizer, Configuration::UndefinedBehaviorSanitizer,
])) ]))
.run() .run()
.expect("Failed to run the wrapped libtool") .expect("Failed to run the wrapped ar")
{ {
std::process::exit(code); std::process::exit(code);
} }
} else { } else {
panic!("LibAFL libtool: No Arguments given"); panic!("LibAFL ar: No Arguments given");
} }
} }