diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/id.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -79,7 +79,9 @@ const char *get_drive_id(struct random_seed *rs) { #ifdef HAVE_UTIL_LINUX const char *get_fs_uuid_util_linux(struct random_seed *rs) { - return "fake uuid"; + (void)rs; + fputs("error: util linux not implemented\n", stderr); + return NULL; } #endif |