From 63245d99eae10ed7bc04cf1595289336bfd4d0f6 Mon Sep 17 00:00:00 2001 From: Joachim Seemer Date: Mon, 2 Aug 2010 16:31:31 +0000 Subject: [PATCH] Added the type 'icon' to the help text of addattr. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37848 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/bin/addattr/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/addattr/main.cpp b/src/bin/addattr/main.cpp index 82525bb8f3..50c89e1ed6 100644 --- a/src/bin/addattr/main.cpp +++ b/src/bin/addattr/main.cpp @@ -112,7 +112,7 @@ usage(int returnValue) " or: %s [-f value-from-file] [-t type] [ -P ] attr file1 [file2...]\n\n" "\t-P : Don't resolve links\n" "\tType is one of:\n" - "\t\tstring, mime, int, llong, float, double, bool, raw\n" + "\t\tstring, mime, int, llong, float, double, bool, icon, raw\n" "\t\tor a numeric value (ie. 0x1234, 42, 'ABCD', ...)\n" "\tThe default is \"string\"\n", kProgramName, kProgramName); @@ -126,7 +126,7 @@ invalidAttrType(const char *attrTypeName) fprintf(stderr, "%s: attribute type \"%s\" is not valid\n", kProgramName, attrTypeName); fprintf(stderr, "\tTry one of: string, mime, int, llong, float, double,\n"); - fprintf(stderr, "\t\tbool, raw, or a numeric value (ie. 0x1234, 42, 'ABCD'" + fprintf(stderr, "\t\tbool, icon, raw, or a numeric value (ie. 0x1234, 42, 'ABCD'" ", ...)\n"); exit(1);