summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libnvpair.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/libnvpair.c b/libnvpair.c
index 67330b1..4788be3 100644
--- a/libnvpair.c
+++ b/libnvpair.c
@@ -25,7 +25,6 @@
#include <unistd.h>
#include <strings.h>
-#include <libintl.h>
#include <sys/types.h>
#include <inttypes.h>
#include <stdarg.h>
@@ -914,9 +913,9 @@ dump_nvlist(nvlist_t *list, int indent)
break;
default:
- (void) printf(dgettext(TEXT_DOMAIN, "bad config type "
+ (void) printf("bad config type "
"%d for %s\n"), nvpair_type(elem),
- nvpair_name(elem));
+ nvpair_name(elem);
}
}
}