From 6f4563c12bf2036c5121098afded12706bd6be59 Mon Sep 17 00:00:00 2001 From: lazymio Date: Mon, 25 Oct 2021 01:20:02 +0200 Subject: [PATCH] Fix typo --- uc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uc.c b/uc.c index 40ac6001..c5024447 100644 --- a/uc.c +++ b/uc.c @@ -111,7 +111,7 @@ const char *uc_strerror(uc_err code) case UC_ERR_AFL_RET_CALLED_TWICE: return "AFL has already been started before (UC_ERR_AFL_RET_CALLED_TWICE)"; case UC_ERR_AFL_RET_FINISHED: - return "We forked before but now parent is gone (UC_ERR_AFL_REG_FINISHED)"; + return "We forked before but now parent is gone (UC_ERR_AFL_RET_FINISHED)"; } }