fix: not exiting the program when a call fails

This commit is contained in:
Gabriel mermelstein 2025-02-17 12:50:12 +02:00
parent cd77341fb3
commit e75563693a
No known key found for this signature in database
GPG Key ID: 82B8134785FEAE0D

View File

@ -61,7 +61,6 @@ package waku
int ret = call; \
if (ret != 0) { \
printf("Failed the call to: %s. Returned code: %d\n", #call, ret); \
exit(1); \
} \
} while (0)