Changeset 66780 in vbox for trunk/include
- Timestamp:
- May 4, 2017 9:56:24 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 115192
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/message.h
r66594 r66780 104 104 * @param ... Format arguments. 105 105 */ 106 RTDECL(RTEXITCODE) RTMsgErrorExitFailure(const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR( 2, 3);106 RTDECL(RTEXITCODE) RTMsgErrorExitFailure(const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(1, 2); 107 107 108 108 /** … … 113 113 * @param va Format arguments. 114 114 */ 115 RTDECL(RTEXITCODE) RTMsgErrorExitFailureV(const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR( 2, 0);115 RTDECL(RTEXITCODE) RTMsgErrorExitFailureV(const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(1, 0); 116 116 117 117 /**
Note:
See TracChangeset
for help on using the changeset viewer.