Projet

Général

Profil

0006-Fix-unused-parameters-warnings-71313.patch

Benjamin Dauvergne, 17 novembre 2022 18:53

Télécharger (1,27 ko)

Voir les différences:

Subject: [PATCH 6/6] Fix unused parameters warnings (#71313)

 lasso/lasso.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
lasso/lasso.c
440 440
}
441 441

  
442 442
/* Deprecated functions, kept only to maintain the ABI and the SONAME */
443
void lasso_register_dst_service(const char *prefix, const char *href)
443
void lasso_register_dst_service(G_GNUC_UNUSED const char *prefix, G_GNUC_UNUSED const char *href)
444 444
{
445 445
}
446 446

  
447
char* lasso_get_prefix_for_dst_service_href(const char *href)
447
char* lasso_get_prefix_for_dst_service_href(G_GNUC_UNUSED const char *href)
448 448
{
449 449
	return NULL;
450 450
}
451
void lasso_register_idwsf2_dst_service(const gchar *prefix, const gchar *href)
451
void lasso_register_idwsf2_dst_service(G_GNUC_UNUSED const gchar *prefix, G_GNUC_UNUSED const gchar *href)
452 452
{
453 453
}
454
gchar* lasso_get_prefix_for_idwsf2_dst_service_href(const gchar *href)
454
gchar* lasso_get_prefix_for_idwsf2_dst_service_href(G_GNUC_UNUSED const gchar *href)
455 455
{
456 456
	return NULL;
457 457
}
458
-