aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/expr.c2
-rw-r--r--coreutils/ln.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/coreutils/expr.c b/coreutils/expr.c
index 3f052d92a..969d9fff5 100644
--- a/coreutils/expr.c
+++ b/coreutils/expr.c
@@ -147,7 +147,7 @@ static int null (VALUE *v)
static void tostring (VALUE *v)
{
if (v->type == integer) {
- bb_xasprintf (&(v->u.s), "%d", v->u.i);
+ v->u.s = bb_xasprintf ("%d", v->u.i);
v->type = string;
}
}
diff --git a/coreutils/ln.c b/coreutils/ln.c
index 274e0d06c..6751e9093 100644
--- a/coreutils/ln.c
+++ b/coreutils/ln.c
@@ -74,17 +74,17 @@ extern int ln_main(int argc, char **argv)
src_name = src;
}
if (!(flag & LN_SYMLINK) && stat(*argv, &statbuf)) {
- bb_perror_msg(*argv);
+ bb_perror_msg("%s", *argv);
status = EXIT_FAILURE;
free(src_name);
continue;
}
if (flag & LN_BACKUP) {
- char *backup = NULL;
- bb_xasprintf(&backup, "%s%s", src, suffix);
+ char *backup;
+ backup = bb_xasprintf("%s%s", src, suffix);
if (rename(src, backup) < 0 && errno != ENOENT) {
- bb_perror_msg(src);
+ bb_perror_msg("%s", src);
status = EXIT_FAILURE;
free(backup);
continue;