From: Chris Hanson Date: Fri, 6 Jan 1995 22:14:29 +0000 (+0000) Subject: Eliminate extra period in OS/2 error messages. X-Git-Tag: 20090517-FFI~6780 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=b3300d7ee027b6f190e99e5dd246f6f84086dd63;p=mit-scheme.git Eliminate extra period in OS/2 error messages. --- 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'; }