From 66a8169827ef34df3a60a73d2a741a3003d264ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20Weinm=C3=BCller?= <38830106+weinmueller@users.noreply.github.com> Date: Wed, 6 Mar 2024 09:04:57 +0100 Subject: [PATCH] Update linear_shell_multipatch.cpp Replace EXIT_FAIL with EXIT_FAILURE --- tutorials/linear_shell_multipatch.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/linear_shell_multipatch.cpp b/tutorials/linear_shell_multipatch.cpp index 857bdb0..ae2fe82 100644 --- a/tutorials/linear_shell_multipatch.cpp +++ b/tutorials/linear_shell_multipatch.cpp @@ -194,6 +194,6 @@ int main(int argc, char *argv[]) return EXIT_SUCCESS; #else GISMO_ERROR("The tutorial needs to be compiled with gsKLShell enabled"); - return EXIT_FAILED; + return EXIT_FAILURE; #endif -}// end main \ No newline at end of file +}// end main