From: Chris Hanson Date: Wed, 21 Oct 1998 07:38:10 +0000 (+0000) Subject: Fix typo. X-Git-Tag: 20090517-FFI~4734 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=697ee467f4a77065a1a73d765f9838cc08e407c4;p=mit-scheme.git Fix typo. --- diff --git a/v7/src/microcode/nttop.c b/v7/src/microcode/nttop.c index 8666a3503..a922f054d 100644 --- a/v7/src/microcode/nttop.c +++ b/v7/src/microcode/nttop.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: nttop.c,v 1.26 1998/10/21 04:43:33 cph Exp $ +$Id: nttop.c,v 1.27 1998/10/21 07:38:10 cph Exp $ Copyright (c) 1993-98 Massachusetts Institute of Technology @@ -167,8 +167,7 @@ OS_initialize (void) } else if ((info.dwPlatformId) == VER_PLATFORM_WIN32_WINDOWS) { - sprintf (((char *) OS_Variant), - "Microsoft Windows %s (Build %u", + sprintf (p, "Microsoft Windows %s (Build %u", (((info.dwMinorVersion) == 0) ? "95" : ((info.dwMinorVersion) == 10) @@ -185,8 +184,7 @@ OS_initialize (void) } else { - sprintf (((char *) OS_Variant), - "Microsoft Windows %u.%u", + sprintf (p, "Microsoft Windows %u.%u", (info.dwMajorVersion), (info.dwMinorVersion)); NT_windows_type = wintype_31;