From 0d33e4d5b7c80aa6776ee4f3b04bb3b43c160c45 Mon Sep 17 00:00:00 2001 From: wiz Date: Sun, 26 May 2013 21:26:17 +0000 Subject: [PATCH] Instead of 'no space', say 'not enough space' in error message. --- sbin/gpt/add.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbin/gpt/add.c b/sbin/gpt/add.c index 53d3355dde78..32ec462a078d 100644 --- a/sbin/gpt/add.c +++ b/sbin/gpt/add.c @@ -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 @@ -130,7 +130,7 @@ add(int fd) 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; }