diff options
author | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2018-09-06 10:41:18 -0400 |
---|---|---|
committer | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2018-09-06 10:43:32 -0400 |
commit | cba728f142fc7fa7219d1be49c8cb4aada4309f3 (patch) | |
tree | 062611d26fec0a47a07090865c632225e0947c8a /src | |
parent | 42cae09331fe54d0e2d720b671fee101322f9602 (diff) | |
download | random-seed-cba728f142fc7fa7219d1be49c8cb4aada4309f3.tar.xz random-seed-cba728f142fc7fa7219d1be49c8cb4aada4309f3.zip |
Stuff.
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 |