From: Chris Hanson Date: Fri, 6 Jan 1995 22:15:45 +0000 (+0000) Subject: Eliminate extra period in OS/2 error messages. X-Git-Tag: 20090517-FFI~6779 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=37eac63be610f3cbdd053eeb2db8c2841062d195;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 4c4d9d36b..ff746230a 100644 --- a/v7/src/microcode/os2top.c +++ b/v7/src/microcode/os2top.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: os2top.c,v 1.8 1995/01/06 22:14:29 cph Exp $ +$Id: os2top.c,v 1.9 1995/01/06 22:15:45 cph Exp $ Copyright (c) 1994-95 Massachusetts Institute of Technology @@ -1552,7 +1552,7 @@ OS_error_code_to_message (unsigned int syserr) { unsigned int length = (strlen (last_message)); if ((length > 0) && ((last_message [length - 1]) == '.')) - (last_message [length - 1]) = '\0'; + (((char *) last_message) [length - 1]) = '\0'; } return (last_message); }