diff options
| author | Harvey Harrison <[email protected]> | 2008-03-06 04:47:47 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2008-03-06 04:47:47 +0000 |
| commit | 0dc47877a3de00ceadea0005189656ae8dc52669 (patch) | |
| tree | 7440a87385fe318cb42f0ae161be195f5e967d82 /net/ipv4/tcp_input.c | |
| parent | COSA/SRP: convert channel_data.rsem to mutex (diff) | |
| download | kernel-0dc47877a3de00ceadea0005189656ae8dc52669.tar.gz kernel-0dc47877a3de00ceadea0005189656ae8dc52669.zip | |
net: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/ipv4/tcp_input.c')
| -rw-r--r-- | net/ipv4/tcp_input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index c4679f343675..9cf446427cc2 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c @@ -3561,7 +3561,7 @@ static void tcp_fin(struct sk_buff *skb, struct sock *sk, struct tcphdr *th) * cases we should never reach this piece of code. */ printk(KERN_ERR "%s: Impossible, sk->sk_state=%d\n", - __FUNCTION__, sk->sk_state); + __func__, sk->sk_state); break; } |
