mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-04 16:05:11 +00:00

Based on a patch from Simon McVittie on https://salsa.debian.org/efi-team/fwupd/-/merge_requests/4 Suggested-by: Simon McVittie <smcv@debian.org>
11 lines
161 B
C
11 lines
161 B
C
#undef NDEBUG
|
|
#include <assert.h>
|
|
|
|
#include <fwupd.h>
|
|
|
|
int main (void)
|
|
{
|
|
assert (fwupd_error_to_string (FWUPD_ERROR_NOTHING_TO_DO) != NULL);
|
|
return 0;
|
|
}
|