[xbuild] Fix warnings.
[mono.git] / mono / tests / threadpool.cs
index cfcc6ee4c8a256fe1bdcbf724dc684ab8769ae9b..01d3ab9460d90346a5435c7cf4967aa633bac835 100644 (file)
@@ -6,7 +6,7 @@ public class Test {
        static int csum = 0;
        
        public static void test_callback (object state) {
-               Console.WriteLine("test_casllback:" + state);
+               Console.WriteLine("test_callback:" + state);
                Thread.Sleep (200);
                Interlocked.Increment (ref csum);
        }