Changeset 62905 in vbox
- Timestamp:
- Aug 3, 2016 11:10:07 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109506
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevFdc.cpp
r62904 r62905 72 72 #else /* !VBOX */ 73 73 # ifdef LOG_ENABLED 74 static void FLOPPY_DPRINTF(const char *fmt, ...) 75 { 76 if (LogIsEnabled()) { 77 va_list args; 78 va_start(args, fmt); 79 RTLogLogger(NULL, NULL, "floppy: %N", fmt, &args); /* %N - nested va_list * type formatting call. */ 80 va_end(args); 81 } 82 } 74 # define FLOPPY_DPRINTF(...) Log(("floppy: " __VA_ARGS__)) 83 75 # else 84 76 # define FLOPPY_DPRINTF(...) do { } while (0)
Note:
See TracChangeset
for help on using the changeset viewer.