diff options
Diffstat (limited to 'src/format')
-rw-r--r-- | src/format/format.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/format/format.h b/src/format/format.h index 3c1bbea..09ac07a 100644 --- a/src/format/format.h +++ b/src/format/format.h @@ -119,8 +119,8 @@ typedef enum _BinaryFormatError /* Protège ou lève la protection de l'accès aux erreurs. */ void g_binary_format_lock_unlock_errors(GBinFormat *, bool); -#define g_binary_format_lock_errors(p) g_binary_format_lock_unlock_errors(p, true) -#define g_binary_format_unlock_errors(p) g_binary_format_lock_unlock_errors(p, false) +#define g_binary_format_lock_errors(f) g_binary_format_lock_unlock_errors(f, true) +#define g_binary_format_unlock_errors(f) g_binary_format_lock_unlock_errors(f, false) /* Etend la liste des soucis détectés avec de nouvelles infos. */ void g_binary_format_add_error(GBinFormat *, BinaryFormatError, const vmpa2t *, const char *); |