From 16e7e93d54099729467ed0e39081c5394e660717 Mon Sep 17 00:00:00 2001 From: Richard Kimberly Heck Date: Fri, 9 Feb 2024 20:40:56 -0500 Subject: [PATCH] Fix return value. Committed wrong version. --- src/LyX.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LyX.cpp b/src/LyX.cpp index 20201f41d7..21a84e249e 100644 --- a/src/LyX.cpp +++ b/src/LyX.cpp @@ -1371,7 +1371,7 @@ int parse_geometry(string const & arg1, string const &, string &) return -1; #else // but that is only done if QPA_XCB is not defined. - return 0; + return 1; #endif }