From d8dbdc4a017e051b3dde2e93791e2495722bfa21 Mon Sep 17 00:00:00 2001 From: Naksu <53827613+naksudev@users.noreply.github.com> Date: Fri, 5 Jan 2024 12:45:49 +0100 Subject: [PATCH] main: Fix typo in std::cerr (#4359) --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 2edf3601..e1f43ad0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -85,7 +85,7 @@ int main(int argc, char** argv) { } if (!ignoreSudo && Init::isSudo()) { - std::cerr << "[ ERROR ] Hyprland was launched with superuser priveleges, but the privileges check is not omitted.\n"; + std::cerr << "[ ERROR ] Hyprland was launched with superuser privileges, but the privileges check is not omitted.\n"; std::cerr << " Hint: Use the --i-am-really-stupid flag to omit that check.\n"; return 1;