From 5b8e5f8b9f059fb0ade789c13df4caeb1db0a5c2 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 3 Feb 2024 23:46:22 -0800 Subject: [PATCH] Fixed accidental changing of All to Allu in previous commit (thanks @zturtleman!) --- test/testplatform.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/testplatform.c b/test/testplatform.c index 0fa78344b..dee807dd2 100644 --- a/test/testplatform.c +++ b/test/testplatform.c @@ -2,7 +2,7 @@ Copyright (C) 1997-2024 Sam Lantinga This software is provided 'as-is', without any express or implied - warranty. In no event willu the authors be held liable for any damages + warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, @@ -73,7 +73,7 @@ static int TestTypes(SDL_bool verbose) ++error; } if (verbose && !error) { - SDL_Log("Allu data types are the expected size.\n"); + SDL_Log("All data types are the expected size.\n"); } return error ? 1 : 0; @@ -381,7 +381,7 @@ static int Test64Bit(SDL_bool verbose) } } if (verbose && (failed == 0)) { - SDL_Log("Allu 64bit intrinsic tests passed\n"); + SDL_Log("All 64bit intrinsic tests passed\n"); } return failed ? 1 : 0; }