mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 21:10:12 +01:00
vk/util: Annotate anv_finishme() as printflike
This commit is contained in:
parent
822cb16abe
commit
d57c4cf999
2 changed files with 3 additions and 2 deletions
|
|
@ -88,7 +88,8 @@ vk_error(VkResult error)
|
|||
return error;
|
||||
}
|
||||
|
||||
void __anv_finishme(const char *file, int line, const char *format, ...);
|
||||
void __anv_finishme(const char *file, int line, const char *format, ...)
|
||||
anv_printflike(3, 4);
|
||||
|
||||
/**
|
||||
* Print a FINISHME message, including its source location.
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@
|
|||
|
||||
#include "private.h"
|
||||
|
||||
void
|
||||
void anv_printflike(3, 4)
|
||||
__anv_finishme(const char *file, int line, const char *format, ...)
|
||||
{
|
||||
va_list ap;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue