From a24527b0fd051f688f5e1c2508da437d27cf0ba5 Mon Sep 17 00:00:00 2001 From: Stathis Kamperis Date: Mon, 5 May 2008 21:18:24 +0300 Subject: [PATCH] Honour 80cols per line limit --- pthreads/matrixmul/matrixmul.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pthreads/matrixmul/matrixmul.c b/pthreads/matrixmul/matrixmul.c index e043c20..712c9b9 100644 --- a/pthreads/matrixmul/matrixmul.c +++ b/pthreads/matrixmul/matrixmul.c @@ -66,7 +66,8 @@ int main(int argc, char *argv[]) /* Is the multiplication feasible by definition? */ if (mat1->cols != mat2->rows) { - fprintf(stderr, "Matrices' dimensions size must satisfy (NxM)(MxK)=(NxK)\n"); + fprintf(stderr, "Matrices' dimensions size must satisfy" + "(NxM)(MxK)=(NxK)\n"); goto CLEANUP_AND_EXIT; } -- 2.11.4.GIT