]> asedeno.scripts.mit.edu Git - PuTTY_svn.git/commitdiff
Remove a debugging printf.
authorBen Harris <bjh21@bjh21.me.uk>
Sat, 23 Nov 2002 13:16:36 +0000 (13:16 +0000)
committerBen Harris <bjh21@bjh21.me.uk>
Sat, 23 Nov 2002 13:16:36 +0000 (13:16 +0000)
git-svn-id: http://svn.tartarus.org/sgt/putty@2243 cda61777-01e9-0310-a592-d414129be87e

mac/macterm.c

index 2b0c0fe8f89ac4443d97c6aacb72c116a59ef3af..30a895258722c0f7f30db2856d3c71f190496678 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: macterm.c,v 1.5 2002/11/20 00:33:44 ben Exp $ */
+/* $Id: macterm.c,v 1.6 2002/11/23 13:16:36 ben Exp $ */
 /*
  * Copyright (c) 1999 Simon Tatham
  * Copyright (c) 1999, 2002 Ben Harris
@@ -1203,8 +1203,6 @@ static void real_palette_set(Session *s, int n, int r, int g, int b)
     col.red   = r * 0x0101;
     col.green = g * 0x0101;
     col.blue  = b * 0x0101;
-    fprintf(stderr, "p%d <- (0x%x, 0x%x, 0x%x)\n", n, col.red, col.green,
-           col.blue);
     SetEntryColor(s->palette, n, &col);
 }