Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sbin/gpt Instead of 'no space', say 'not enough space' in er...



details:   https://anonhg.NetBSD.org/src/rev/8be1064c9bd3
branches:  trunk
changeset: 786976:8be1064c9bd3
user:      wiz <wiz%NetBSD.org@localhost>
date:      Sun May 26 21:26:17 2013 +0000

description:
Instead of 'no space', say 'not enough space' in error message.

diffstat:

 sbin/gpt/add.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r bc59d9d35809 -r 8be1064c9bd3 sbin/gpt/add.c
--- a/sbin/gpt/add.c    Sun May 26 18:07:42 2013 +0000
+++ b/sbin/gpt/add.c    Sun May 26 21:26:17 2013 +0000
@@ -29,7 +29,7 @@
 __FBSDID("$FreeBSD: src/sbin/gpt/add.c,v 1.14 2006/06/22 22:05:28 marcel Exp $");
 #endif
 #ifdef __RCSID
-__RCSID("$NetBSD: add.c,v 1.13 2013/04/13 18:32:01 jakllsch Exp $");
+__RCSID("$NetBSD: add.c,v 1.14 2013/05/26 21:26:17 wiz Exp $");
 #endif
 
 #include <sys/types.h>
@@ -130,7 +130,7 @@
 
        map = map_alloc(block, size);
        if (map == NULL) {
-               warnx("%s: error: no space available on device", device_name);
+               warnx("%s: error: not enough space available on device", device_name);
                return;
        }
 



Home | Main Index | Thread Index | Old Index