From 6562c6628914f3a7219244d46c3ccb6cf85a5157 Mon Sep 17 00:00:00 2001 From: Bryce Denney Date: Wed, 27 Mar 2002 17:49:46 +0000 Subject: [PATCH] - something like this has already been checked in --- bochs/patches/patch.fix-copy | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 bochs/patches/patch.fix-copy diff --git a/bochs/patches/patch.fix-copy b/bochs/patches/patch.fix-copy deleted file mode 100644 index 1fbac445d..000000000 --- a/bochs/patches/patch.fix-copy +++ /dev/null @@ -1,28 +0,0 @@ -Index: gui.cc -=================================================================== -RCS file: /cvsroot/bochs/bochs/gui/gui.cc,v -retrieving revision 1.18.2.7 -retrieving revision 1.18.2.8 -diff -u -r1.18.2.7 -r1.18.2.8 ---- gui.cc 18 Mar 2002 20:08:46 -0000 1.18.2.7 -+++ gui.cc 23 Mar 2002 02:58:31 -0000 1.18.2.8 -@@ -1,5 +1,5 @@ - ///////////////////////////////////////////////////////////////////////// --// $Id: patch.fix-copy,v 1.1 2002-03-23 03:00:15 bdenney Exp $ -+// $Id: patch.fix-copy,v 1.1 2002-03-23 03:00:15 bdenney Exp $ - ///////////////////////////////////////////////////////////////////////// - // - // Copyright (C) 2002 MandrakeSoft S.A. -@@ -341,9 +341,9 @@ - BX_INFO (("storing %d bytes to X windows clipboard", len)); - XStoreBytes (bx_x_display, (char *)text_snapshot, len); - #else -- OUTPUT = fopen("copy.txt", "w"); -- fwrite(text_snapshot, 1, strlen(snapshot_txt), OUTPUT); -- fclose(OUTPUT); -+ FILE *fp = fopen("copy.txt", "w"); -+ fwrite(text_snapshot, 1, strlen(text_snapshot), fp); -+ fclose(fp); - #endif - free(text_snapshot); - }