Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S270521AbTGNE2N (ORCPT ); Mon, 14 Jul 2003 00:28:13 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S270522AbTGNE2N (ORCPT ); Mon, 14 Jul 2003 00:28:13 -0400 Received: from out002pub.verizon.net ([206.46.170.141]:47347 "EHLO out002.verizon.net") by vger.kernel.org with ESMTP id S270521AbTGNE2L (ORCPT ); Mon, 14 Jul 2003 00:28:11 -0400 Date: Sun, 13 Jul 2003 21:41:50 -0700 From: "Randy.Dunlap" To: lkml Cc: torvalds@osdl.org, akpm@osdl.org, kas@fi.muni.cz, paulkf@microgate.com Subject: ]PATCH] syncppp: incomplete function prototype Message-Id: <20030713214150.1ed34f23.randy.dunlap@verizon.net> Organization: YPO4 X-Mailer: Sylpheed version 0.8.11 (GTK+ 1.2.10; i686-pc-linux-gnu) X-Face: +5V?h'hZQPB9kW Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out002.verizon.net from [4.4.25.4] at Sun, 13 Jul 2003 23:42:58 -0500 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1363 Lines: 45 Hi, This patch is to 2.6.0-test1 and fixes this warning: syncppp.c:165: warning: function declaration isn't a prototype by adding "void" as the function parameter list. Please apply. -- ~Randy patch_name: syncppp_function.patch patch_version: 2003-07-13.21:36:07 author: Randy.Dunlap description: fix compile warning: syncppp.c:165: warning: function declaration isn't a prototype product: Linux product_versions: 2.6.0-test1 maintainer: Jan "Yenya" Kasprzak , Paul Fulghum (paulkf@microgate.com) diffstat: = drivers/net/wan/syncppp.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -Naur ./drivers/net/wan/syncppp.c~org ./drivers/net/wan/syncppp.c --- ./drivers/net/wan/syncppp.c~org 2003-07-13 20:32:29.000000000 -0700 +++ ./drivers/net/wan/syncppp.c 2003-07-13 21:31:24.000000000 -0700 @@ -161,7 +161,7 @@ * then put the packet into tx_queue, and call sppp_flush_xmit() * after spinlock is released. */ -static void sppp_flush_xmit() +static void sppp_flush_xmit(void) { struct sk_buff *skb; while ((skb = skb_dequeue(&tx_queue)) != NULL) - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/