From b3300d7ee027b6f190e99e5dd246f6f84086dd63 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Fri, 6 Jan 1995 22:14:29 +0000 Subject: [PATCH] Eliminate extra period in OS/2 error messages. --- v7/src/microcode/os2top.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/microcode/os2top.c b/v7/src/microcode/os2top.c index 08d6b803a..4c4d9d36b 100644 --- a/v7/src/microcode/os2top.c +++ b/v7/src/microcode/os2top.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: os2top.c,v 1.7 1995/01/06 22:12:13 cph Exp $ +$Id: os2top.c,v 1.8 1995/01/06 22:14:29 cph Exp $ Copyright (c) 1994-95 Massachusetts Institute of Technology @@ -1550,7 +1550,7 @@ OS_error_code_to_message (unsigned int syserr) and adding its own. */ if (last_message != 0) { - length = (strlen (last_message)); + unsigned int length = (strlen (last_message)); if ((length > 0) && ((last_message [length - 1]) == '.')) (last_message [length - 1]) = '\0'; } -- 2.25.1