summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bin/sh/expand.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/sh/expand.c b/bin/sh/expand.c
index a72e351..fe8910f 100644
--- a/bin/sh/expand.c
+++ b/bin/sh/expand.c
@@ -33,7 +33,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: expand.c,v 1.19 1997/06/06 23:04:33 ache Exp $
+ * $Id: expand.c,v 1.20 1997/06/19 15:14:01 jkh Exp $
*/
#ifndef lint
@@ -1388,8 +1388,6 @@ cvtnum(num, buf)
temp[31] = '\0';
- if (neg)
- num = -num;
do {
*--p = num % 10 + '0';
} while ((num /= 10) != 0);
OpenPOWER on IntegriCloud