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
This commit is contained in:
Joachim Seemer 2010-08-02 16:31:31 +00:00
parent ca215dfe68
commit 63245d99ea
1 changed files with 2 additions and 2 deletions

View File

@ -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);