diff options
author | Stefan Kempf <stefan@cvs.openbsd.org> | 2007-11-22 21:47:25 +0000 |
---|---|---|
committer | Stefan Kempf <stefan@cvs.openbsd.org> | 2007-11-22 21:47:25 +0000 |
commit | f67ad3256e3b87445379d6b41d845b2754900018 (patch) | |
tree | 6ff621d8d83e0dd5a4cc57905981b59160c207c5 /usr.bin/pcc | |
parent | 88e22e8a6bbf5f77c474b9c5d1255d186fbfea12 (diff) |
Pull from master repo:
Kill two useless assignments. ok ragge@ some time ago
Diffstat (limited to 'usr.bin/pcc')
-rw-r--r-- | usr.bin/pcc/cc/cc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/pcc/cc/cc.c b/usr.bin/pcc/cc/cc.c index 6f5d153fffc..5d57d542369 100644 --- a/usr.bin/pcc/cc/cc.c +++ b/usr.bin/pcc/cc/cc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cc.c,v 1.11 2007/11/10 22:11:22 stefan Exp $ */ +/* $OpenBSD: cc.c,v 1.12 2007/11/22 21:47:24 stefan Exp $ */ /* * Copyright(C) Caldera International Inc. 2001-2002. All rights reserved. * @@ -478,9 +478,9 @@ main(int argc, char *argv[]) } if(sflag) { if (outfile) - assource = tmp3 = outfile; + tmp3 = outfile; else - assource = tmp3 = setsuf(clist[i], 's'); + tmp3 = setsuf(clist[i], 's'); } av[na++] = tmp3; #if 0 |