fwupd/contrib/ci/out-of-tree-link/fwupd.c
2021-08-24 11:18:40 -05:00

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;
}