소스 검색

examples/sched_ctx/parallel_code.c: fix character typo (: instead of ;)

Nathalie Furmento 11 년 전
부모
커밋
fa6f639707
1개의 변경된 파일3개의 추가작업 그리고 4개의 파일을 삭제
  1. 3 4
      examples/sched_ctx/parallel_code.c

+ 3 - 4
examples/sched_ctx/parallel_code.c

@@ -1,7 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
  * Copyright (C) 2010-2013  Université de Bordeaux 1
- * Copyright (C) 2010-2013  Centre National de la Recherche Scientifique
+ * Copyright (C) 2010-2014  Centre National de la Recherche Scientifique
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by
@@ -100,9 +100,8 @@ int main(int argc, char **argv)
 #else
 	procs1 = (int*)malloc(nprocs1*sizeof(int));
 	procs2 = (int*)malloc(nprocs2*sizeof(int));
-	procs1[0] = 0:
-	procs2[0] = 0:
-
+	procs1[0] = 0;
+	procs2[0] = 0;
 #endif
 
 	int p;