chiark / gitweb /
pager: let's move static variables up, to the rest of them
authorLennart Poettering <lennart@poettering.net>
Fri, 29 Dec 2017 17:14:37 +0000 (18:14 +0100)
committerSven Eden <yamakuzure@gmx.net>
Wed, 30 May 2018 05:49:52 +0000 (07:49 +0200)
let's keep static variables together, and before the function
definitions.

src/shared/pager.c

index 7a19d4bb1970e2a878a175fb4f25b36b6bcaf0ca..7a4df09df32d6d9f78a8e57bb10bfd7c0cb66877 100644 (file)
 
 static pid_t pager_pid = 0;
 
+static int stored_stdout = -1;
+static int stored_stderr = -1;
+static bool stdout_redirected = false;
+static bool stderr_redirected = false;
+
 noreturn static void pager_fallback(void) {
         int r;
 
@@ -54,11 +59,6 @@ noreturn static void pager_fallback(void) {
         _exit(EXIT_SUCCESS);
 }
 
-static int stored_stdout = -1;
-static int stored_stderr = -1;
-static bool stdout_redirected = false;
-static bool stderr_redirected = false;
-
 int pager_open(bool no_pager, bool jump_to_end) {
         _cleanup_close_pair_ int fd[2] = { -1, -1 };
         const char *pager;