diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2001-12-10 08:09:49 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-12-10 08:09:49 +0000 |
| commit | 6e551fb6285417f585c419500047004ed47c77f1 (patch) | |
| tree | b580d740769b3b201f76ad941e8b0b8ca3015bc0 /sys/dev/aac/aacvar.h | |
| parent | 9d34414bc2a9385fb400e1ca7384bd4c4d1291cd (diff) | |
Notes
Diffstat (limited to 'sys/dev/aac/aacvar.h')
| -rw-r--r-- | sys/dev/aac/aacvar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/aac/aacvar.h b/sys/dev/aac/aacvar.h index ce151124e3317..758e24135f6d8 100644 --- a/sys/dev/aac/aacvar.h +++ b/sys/dev/aac/aacvar.h @@ -385,11 +385,11 @@ extern void aac_dump_complete(struct aac_softc *sc); #ifdef AAC_DEBUG # define debug(level, fmt, args...) \ do { \ - if (level <=AAC_DEBUG) printf("%s: " fmt "\n", __FUNCTION__ , ##args); \ + if (level <=AAC_DEBUG) printf("%s: " fmt "\n", __func__ , ##args); \ } while (0) # define debug_called(level) \ do { \ - if (level <= AAC_DEBUG) printf(__FUNCTION__ ": called\n"); \ + if (level <= AAC_DEBUG) printf(__func__ ": called\n"); \ } while (0) extern void aac_print_queues(struct aac_softc *sc); @@ -399,7 +399,7 @@ extern void aac_print_fib(struct aac_softc *sc, struct aac_fib *fib, extern void aac_print_aif(struct aac_softc *sc, struct aac_aif_command *aif); -# define AAC_PRINT_FIB(sc, fib) aac_print_fib(sc, fib, __FUNCTION__) +# define AAC_PRINT_FIB(sc, fib) aac_print_fib(sc, fib, __func__) #else # define debug(level, fmt, args...) |
