mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-04 17:20:13 +00:00
13 lines
193 B
C
13 lines
193 B
C
/* SPDX-License-Identifier: LGPL-2.1+ */
|
|
|
|
#undef NDEBUG
|
|
#include <assert.h>
|
|
#include <fwupd.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
assert(fwupd_error_to_string(FWUPD_ERROR_NOTHING_TO_DO) != NULL);
|
|
return 0;
|
|
}
|