summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-support/ntop/ntop/fix-missing-return-from-non-void-function.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-networking/recipes-support/ntop/ntop/fix-missing-return-from-non-void-function.patch')
-rw-r--r--meta-networking/recipes-support/ntop/ntop/fix-missing-return-from-non-void-function.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/ntop/ntop/fix-missing-return-from-non-void-function.patch b/meta-networking/recipes-support/ntop/ntop/fix-missing-return-from-non-void-function.patch
new file mode 100644
index 000000000..e627e59a5
--- /dev/null
+++ b/meta-networking/recipes-support/ntop/ntop/fix-missing-return-from-non-void-function.patch
@@ -0,0 +1,19 @@
1Fix following error:
2
3netflowPlugin.c: In function 'netflowUtilsLoop':
4netflowPlugin.c:2144:1: error: no return statement in function returning non-void [-Werror=return-type]
5 2144 | }
6 | ^
7
8Return NULL like netflowMainLoop does.
9
10--- ntop-5.0.1.orig/plugins/netflowPlugin.c 2012-03-09 17:44:17.000000000 +0000
11+++ ntop-5.0.1/plugins/netflowPlugin.c 2019-08-09 10:25:40.878799852 +0000
12@@ -2141,6 +2141,7 @@
13 waitCondvar(&myGlobals.device[deviceId].netflowGlobals->ifStatsQueueCondvar);
14 }
15 }
16+ return(NULL);
17 }
18 #endif
19