diff options
Diffstat (limited to 'hw/cuda.c')
| -rw-r--r-- | hw/cuda.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/cuda.c b/hw/cuda.c index 0956354817..145aa9c2ad 100644 --- a/hw/cuda.c +++ b/hw/cuda.c @@ -36,10 +36,10 @@ //#define DEBUG_CUDA_PACKET #ifdef DEBUG_CUDA -#define CUDA_DPRINTF(fmt, args...) \ -do { printf("CUDA: " fmt , ##args); } while (0) +#define CUDA_DPRINTF(fmt, ...) \ + do { printf("CUDA: " fmt , ## __VA_ARGS__); } while (0) #else -#define CUDA_DPRINTF(fmt, args...) +#define CUDA_DPRINTF(fmt, ...) #endif /* Bits in B data register: all active low */ |