mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
block/ssh: Add missing gcc format attributes
Now gcc will check whether format string and variable arguments match. Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
parent
40508bb424
commit
6ae7d660a0
1 changed files with 2 additions and 2 deletions
|
@ -109,7 +109,7 @@ static void ssh_state_free(BDRVSSHState *s)
|
|||
/* Wrappers around error_report which make sure to dump as much
|
||||
* information from libssh2 as possible.
|
||||
*/
|
||||
static void
|
||||
static void GCC_FMT_ATTR(2, 3)
|
||||
session_error_report(BDRVSSHState *s, const char *fs, ...)
|
||||
{
|
||||
va_list args;
|
||||
|
@ -132,7 +132,7 @@ session_error_report(BDRVSSHState *s, const char *fs, ...)
|
|||
error_printf("\n");
|
||||
}
|
||||
|
||||
static void
|
||||
static void GCC_FMT_ATTR(2, 3)
|
||||
sftp_error_report(BDRVSSHState *s, const char *fs, ...)
|
||||
{
|
||||
va_list args;
|
||||
|
|
Loading…
Reference in a new issue