diff options
author | stefanf <stefanf@FreeBSD.org> | 2004-09-22 16:56:49 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2004-09-22 16:56:49 +0000 |
commit | 5b6654bdf6f88b415d84b148a3789f52f1ec2685 (patch) | |
tree | ce233aa140fe0059fed10f53cfdd1be159abf2c8 /lib/libdevinfo | |
parent | 59b52ed829c8199391024052fe9e5647452fcdb7 (diff) | |
download | FreeBSD-src-5b6654bdf6f88b415d84b148a3789f52f1ec2685.zip FreeBSD-src-5b6654bdf6f88b415d84b148a3789f52f1ec2685.tar.gz |
Prefer C99's __func__ over GCC's __FUNCTION__.
Diffstat (limited to 'lib/libdevinfo')
-rw-r--r-- | lib/libdevinfo/devinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libdevinfo/devinfo.c b/lib/libdevinfo/devinfo.c index 0318629..50bc375 100644 --- a/lib/libdevinfo/devinfo.c +++ b/lib/libdevinfo/devinfo.c @@ -84,7 +84,7 @@ static int devinfo_generation = 0; #if 0 # define debug(fmt, args...) \ - fprintf(stderr, "%s:" fmt "\n", __FUNCTION__ , ##args) + fprintf(stderr, "%s:" fmt "\n", __func__ , ##args) #else # define debug(fmt, args...) #endif |