Commit 1158633b authored by Randy Dunlap's avatar Randy Dunlap Committed by Jeff Garzik

[PATCH] syncppp: incomplete function prototype

This fixes this warning:

  syncppp.c:165: warning: function declaration isn't a prototype

by adding "void" as the function parameter list.
parent b66daf65
......@@ -161,7 +161,7 @@ static int debug;
* 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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment