diff options
author | stefanf <stefanf@FreeBSD.org> | 2004-09-23 18:25:46 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2004-09-23 18:25:46 +0000 |
commit | fc52c1f7c1c8270585873f208bb05f75a12323bb (patch) | |
tree | b134d4f7e89198f2672566dc34bb2b0d3f1bf6df /sys/rpc | |
parent | d66f58dd135d511f18a3b35437ca8cf240a88006 (diff) | |
download | FreeBSD-src-fc52c1f7c1c8270585873f208bb05f75a12323bb.zip FreeBSD-src-fc52c1f7c1c8270585873f208bb05f75a12323bb.tar.gz |
Prefer C99's __func__ over GCC's __FUNCTION__.
Approved by: alfred
Diffstat (limited to 'sys/rpc')
-rw-r--r-- | sys/rpc/rpcclnt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/rpc/rpcclnt.h b/sys/rpc/rpcclnt.h index fa22939..3d9e533 100644 --- a/sys/rpc/rpcclnt.h +++ b/sys/rpc/rpcclnt.h @@ -79,7 +79,7 @@ #ifdef RPCCLNT_DEBUG #define RPCDEBUG(args...) do{ \ if(rpcdebugon != 0){ \ - printf("%s(): ", __FUNCTION__);\ + printf("%s(): ", __func__);\ printf(args); \ printf("\n"); \ }}while(0) |