Changeset 91789 in vbox for trunk/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c
- Timestamp:
- Oct 17, 2021 6:16:11 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 147575
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c
r91552 r91789 1694 1694 1695 1695 1696 RTDECL(int) SUPR0Printf(const char *pszFormat, ...) 1697 { 1698 va_list va; 1696 RTDECL(int) SUPR0PrintfV(const char *pszFormat, va_list va) 1697 { 1699 1698 char szMsg[512]; 1700 1699 IPRT_LINUX_SAVE_EFL_AC(); 1701 1700 1702 va_start(va, pszFormat);1703 1701 RTStrPrintfV(szMsg, sizeof(szMsg) - 1, pszFormat, va); 1704 va_end(va);1705 1702 szMsg[sizeof(szMsg) - 1] = '\0'; 1706 1703
Note:
See TracChangeset
for help on using the changeset viewer.