From 08f9e7678321e58b24cb1e82819e40d82184cf33 Mon Sep 17 00:00:00 2001
From: BlackLight <blacklight@autistici.org>
Date: Mon, 24 May 2010 03:47:58 +0200
Subject: [PATCH] Stupid sudoku bug

---
 sudoku-2x2x2.txt | 2 +-
 sudoku.cpp       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sudoku-2x2x2.txt b/sudoku-2x2x2.txt
index 230751c..423c8b6 100644
--- a/sudoku-2x2x2.txt
+++ b/sudoku-2x2x2.txt
@@ -1,5 +1,5 @@
 #
-# sudoku.txt - Sample sudoky 2x2x2 that our program can understand
+# sudoku.txt - Sample sudoky two-sized that our program can understand
 # Place a zero to identify an unset cell (that, of course, should
 # be set by our smart program).
 #
diff --git a/sudoku.cpp b/sudoku.cpp
index aa8b12d..8197a88 100644
--- a/sudoku.cpp
+++ b/sudoku.cpp
@@ -240,7 +240,7 @@ main ( int argc, char *argv[] )
 		printSudoku(csp);
 	}
 
-	catch (char* msg)  {
+	catch (const char* msg)  {
 		cerr << "Exception: " << msg << endl;
 		return EXIT_FAILURE;
 	}