From c75dbd9b84f0261389580e93d871c1414ac44549 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Turgut=20Sezer=20=C3=96zhasta?= Date: Fri, 27 Jun 2025 13:00:48 +0300 Subject: [PATCH] Update main.c fixed mini typo --- main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index 2a8ed417..5a6a2bc4 100644 --- a/main.c +++ b/main.c @@ -18,7 +18,7 @@ do { int adjerr = set_##ARG(ry, ARG); \ if (!adjerr){ \ any_adjust_applied = 1; \ - printf("Sucessfully set " STRINGIFY(ARG) " to %u\n", ARG); \ + printf("Successfully set " STRINGIFY(ARG) " to %u\n", ARG); \ } else if (adjerr == ADJ_ERR_FAM_UNSUPPORTED) { \ printf("set_" STRINGIFY(ARG) " is not supported on this family\n"); \ err = -1; \ @@ -41,7 +41,7 @@ do { int adjerr = set_##ARG(ry); \ if (!adjerr){ \ any_adjust_applied = 1; \ - printf("Sucessfully enable " STRINGIFY(ARG) "\n"); \ + printf("Successfully enable " STRINGIFY(ARG) "\n"); \ } else if (adjerr == ADJ_ERR_FAM_UNSUPPORTED) { \ printf("set_" STRINGIFY(ARG) " is not supported on this family\n"); \ err = -1; \