Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=14a49e1fd2bb91ba2bf0e1f06711b6dbc21de02d
Commit:     14a49e1fd2bb91ba2bf0e1f06711b6dbc21de02d
Parent:     274707cff9810b784c548ed169298617a1bc3528
Author:     David S. Miller <[EMAIL PROTECTED]>
AuthorDate: Tue Jun 5 00:19:24 2007 -0700
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Thu Jun 7 13:40:09 2007 -0700

    [TCP] tcp_probe: Attach printf attribute properly to printl().
    
    GCC doesn't like the way Stephen initially did it:
    
    net/ipv4/tcp_probe.c:83: warning: empty declaration
    
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 net/ipv4/tcp_probe.c |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/net/ipv4/tcp_probe.c b/net/ipv4/tcp_probe.c
index 760165a..d9323df 100644
--- a/net/ipv4/tcp_probe.c
+++ b/net/ipv4/tcp_probe.c
@@ -63,6 +63,9 @@ struct {
  * FIXME: causes an extra copy
  */
 static void printl(const char *fmt, ...)
+       __attribute__ ((format (printf, 1, 2)));
+
+static void printl(const char *fmt, ...)
 {
        va_list args;
        int len;
@@ -80,8 +83,7 @@ static void printl(const char *fmt, ...)
 
        kfifo_put(tcpw.fifo, tbuf, len);
        wake_up(&tcpw.wait);
-} __attribute__ ((format (printf, 1, 2)));
-
+}
 
 /*
  * Hook inserted to be called before each receive packet.
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to