[INET]: compile errors when DEBUG is defined

Fix build problem found by compiling driver with DEBUG defined that used tcp.h.
Since pr_debug(arg) expands to printk("<7>" arg) the argument
needs to be string that can be concatenated.

Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Stephen Hemminger and committed by
David S. Miller
d8971fcb 1fdab81e

+2 -2
+2 -2
include/net/inet_connection_sock.h
··· 147 } 148 #ifdef INET_CSK_DEBUG 149 else { 150 - pr_debug(inet_csk_timer_bug_msg); 151 } 152 #endif 153 } ··· 180 } 181 #ifdef INET_CSK_DEBUG 182 else { 183 - pr_debug(inet_csk_timer_bug_msg); 184 } 185 #endif 186 }
··· 147 } 148 #ifdef INET_CSK_DEBUG 149 else { 150 + pr_debug("%s", inet_csk_timer_bug_msg); 151 } 152 #endif 153 } ··· 180 } 181 #ifdef INET_CSK_DEBUG 182 else { 183 + pr_debug("%s", inet_csk_timer_bug_msg); 184 } 185 #endif 186 }