aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-02 17:01:22 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-02 17:01:22 +0000
commit5b15483f1f4ad2e5e01e73a05acd0306b88cfe14 (patch)
tree848f86ed96c909415a930b7d68bbe83a2a56a2b0
parent18b3c047588ca10e4a897a778a8ddb3ce9434171 (diff)
downloadbusybox-w32-5b15483f1f4ad2e5e01e73a05acd0306b88cfe14.tar.gz
busybox-w32-5b15483f1f4ad2e5e01e73a05acd0306b88cfe14.tar.bz2
busybox-w32-5b15483f1f4ad2e5e01e73a05acd0306b88cfe14.zip
- use bb_error_msg
git-svn-id: svn://busybox.net/trunk/busybox@18307 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--coreutils/expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/expr.c b/coreutils/expr.c
index 8401594b5..f75f6e0de 100644
--- a/coreutils/expr.c
+++ b/coreutils/expr.c
@@ -219,7 +219,7 @@ static VALUE *docolon(VALUE * sv, VALUE * pv)
219 tostring(pv); 219 tostring(pv);
220 220
221 if (pv->u.s[0] == '^') { 221 if (pv->u.s[0] == '^') {
222 fprintf(stderr, "\ 222 bb_error_msg("\
223warning: unportable BRE: `%s': using `^' as the first character\n\ 223warning: unportable BRE: `%s': using `^' as the first character\n\
224of a basic regular expression is not portable; it is being ignored", pv->u.s); 224of a basic regular expression is not portable; it is being ignored", pv->u.s);
225 } 225 }