Signed-off-by: Matt Turner <mattst88@xxxxxxxxx> --- common/stringops1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/stringops1.c b/common/stringops1.c index 08ed4be..6edac96 100644 --- a/common/stringops1.c +++ b/common/stringops1.c @@ -74,7 +74,7 @@ int strlen(const char *s) { const char *sc; for (sc = s; *sc != '\0'; ++sc); - return sc - s; + return sc - s; } int strncmp(const char *cs, const char *ct, size_t count) -- 2.24.1