From 9cb1aab5b56dd339eaa836d955fbaef237cc0401 Mon Sep 17 00:00:00 2001 From: Andrew Deason Date: Wed, 3 Jul 2024 16:56:22 -0500 Subject: [PATCH] LINUX: Add newline to end of osi_misc.c Since commit 840cf3b62891 (afs: Introduce afs_kill_pending()), osi_misc.c has lacked a newline at the end of the file. This triggers a warning on some old compilers, such as gcc 4.1 on RHEL5, which breaks the build when using --enable-checking: [...]/src/libafs/MODLOAD-2.6.18-419.el5-SP/osi_misc.c:205:2: error: no newline at end of file Add a newline to get rid of the warning/error. Change-Id: Id5a3a3f36c4f51b36426b2fe78ac5afb1f4fb6b3 Reviewed-on: https://gerrit.openafs.org/15775 Tested-by: BuildBot Reviewed-by: Michael Meffie --- src/afs/LINUX/osi_misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/afs/LINUX/osi_misc.c b/src/afs/LINUX/osi_misc.c index 773ca19e43..e9b9acb73f 100644 --- a/src/afs/LINUX/osi_misc.c +++ b/src/afs/LINUX/osi_misc.c @@ -202,4 +202,4 @@ osi_kill_pending(void) # error fatal_signal_pending not available, but it should be #endif return 0; -} \ No newline at end of file +}