Changeset 104921 in vbox
- Timestamp:
- Jun 14, 2024 12:04:58 PM (3 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
include/iprt/tracelog-decoder-plugin.h (modified) (2 diffs)
-
src/VBox/Runtime/tools/RTTraceLogTool.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/tracelog-decoder-plugin.h
r104920 r104921 77 77 * @param ... Arguments specified in the format string. 78 78 */ 79 DECLCALLBACKMEMBER(int, pfnPrintf, (PRTTRACELOGDECODERHLP pHlp, const char *pszFormat, ...)) RT_IPRT_FORMAT_ATTR( 3, 4);79 DECLCALLBACKMEMBER(int, pfnPrintf, (PRTTRACELOGDECODERHLP pHlp, const char *pszFormat, ...)) RT_IPRT_FORMAT_ATTR(2, 3); 80 80 81 81 … … 89 89 * @param ... Arguments specified in the format string. 90 90 */ 91 DECLCALLBACKMEMBER(int, pfnErrorMsg, (PRTTRACELOGDECODERHLP pHlp, const char *pszFormat, ...)) RT_IPRT_FORMAT_ATTR( 3, 4);91 DECLCALLBACKMEMBER(int, pfnErrorMsg, (PRTTRACELOGDECODERHLP pHlp, const char *pszFormat, ...)) RT_IPRT_FORMAT_ATTR(2, 3); 92 92 93 93 -
trunk/src/VBox/Runtime/tools/RTTraceLogTool.cpp
r104920 r104921 207 207 208 208 static DECLCALLBACK(int) rtTraceLogToolDecoderHlpPrintf(PRTTRACELOGDECODERHLP pHlp, const char *pszFormat, ...) 209 RT_IPRT_FORMAT_ATTR(3, 4)210 209 { 211 210 RT_NOREF(pHlp); … … 219 218 220 219 static DECLCALLBACK(int) rtTraceLogToolDecoderHlpErrorMsg(PRTTRACELOGDECODERHLP pHlp, const char *pszFormat, ...) 221 RT_IPRT_FORMAT_ATTR(3, 4)222 220 { 223 221 RT_NOREF(pHlp);
Note:
See TracChangeset
for help on using the changeset viewer.

