From 37eac63be610f3cbdd053eeb2db8c2841062d195 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Fri, 6 Jan 1995 22:15:45 +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 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); } -- 2.25.1