diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-08-30 22:42:22 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-08-30 22:42:22 +0200 |
commit | ef3354e22ea74f7cdb3405041e02374f7de8e880 (patch) | |
tree | 62117a5e23df8becefddcb291dff21ee66963d6b /random/random.c | |
parent | 1f78ddd5719d50d3af7140066316932ef00044cf (diff) |
Fix message about not being able to request shutdown notification
It is just a warning, not a fatal error.
* libdiskfs/init-startup.c (_diskfs_init_completed): Prefix warning about
requesting shutdown nofication with "warning:".
* random/random.c (main): Likewise.
Diffstat (limited to 'random/random.c')
-rw-r--r-- | random/random.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/random/random.c b/random/random.c index 8f76c5ba..828e83af 100644 --- a/random/random.c +++ b/random/random.c @@ -639,7 +639,7 @@ main (int argc, char **argv) err = arrange_shutdown_notification (); if (err) - error (0, err, "Cannot request shutdown notification"); + error (0, err, "Warning: cannot request shutdown notification"); /* Launch. */ ports_manage_port_operations_multithread (fsys->pi.bucket, random_demuxer, |