summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2018-09-06 10:41:18 -0400
committerAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2018-09-06 10:43:32 -0400
commitcba728f142fc7fa7219d1be49c8cb4aada4309f3 (patch)
tree062611d26fec0a47a07090865c632225e0947c8a /src
parent42cae09331fe54d0e2d720b671fee101322f9602 (diff)
downloadrandom-seed-cba728f142fc7fa7219d1be49c8cb4aada4309f3.tar.xz
random-seed-cba728f142fc7fa7219d1be49c8cb4aada4309f3.zip
Stuff.
Diffstat (limited to 'src')
-rw-r--r--src/id.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/id.c b/src/id.c
index 0a37ba5..9e5de8a 100644
--- a/src/id.c
+++ b/src/id.c
@@ -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