Skip to content
Extraits de code Groupes Projets

Update fix

2 files
+ 10
10
Comparer les modifications
  • Côte à côte
  • En ligne

Fichiers

+ 8
8
@@ -22,15 +22,15 @@
#define MIN(a, b) ((a) > (b) ? (b) : (a))
#endif /* MIN */
#define RETURN_IF(cond, msg, ret) \
if (cond) { \
LOG_ERROR("", "%s", msg); \
return ret; \
#define RETURN_IF(cond, msg, ret) \
if (cond) { \
LOG_DEBUG("DEBUG", "%s", msg); \
return ret; \
}
#define GOTO_IF(cond, msg, label) \
if (cond) { \
LOG_ERROR("", "%s", msg); \
goto label; \
#define GOTO_IF(cond, msg, label) \
if (cond) { \
LOG_DEBUG("DEBUG", "%s", msg); \
goto label; \
}
#define GOTO_UNLESS(cond, msg, label) GOTO_IF(!(cond), msg, label)
Chargement en cours