From 1320af37d05baaf569fdfc940bb1d56e3e24620c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Carlos=20Cuevas?= Date: Sun, 1 Sep 2013 03:39:35 +0200 Subject: [PATCH] Added Julia mode enable message in mandel_classic.c. --- mandel_classic.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mandel_classic.c b/mandel_classic.c index 968147d..7d5edfb 100644 --- a/mandel_classic.c +++ b/mandel_classic.c @@ -330,6 +330,7 @@ int main(int argn, char **argv) else if ((argn == 2) && (strcmp(argv[1], "-julia") == 0)) { julia_mode = 1; + printf("Julia mode activated.\n"); } int number_cores = get_cpus();