From 61b867442b0ed067dcb17cf52816e2f406509b78 Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Fri, 6 Mar 2009 03:29:35 +0000 Subject: [PATCH] 80 char fix --- clutter/cogl/common/cogl-current-matrix.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clutter/cogl/common/cogl-current-matrix.c b/clutter/cogl/common/cogl-current-matrix.c index c6a555a1a..e2eb1d31f 100644 --- a/clutter/cogl/common/cogl-current-matrix.c +++ b/clutter/cogl/common/cogl-current-matrix.c @@ -215,7 +215,8 @@ _cogl_current_matrix_ortho (float left, GE (glOrtho (left, right, bottom, top, near_val, far_val)); #else /* Nobody is using glOrtho right now anyway, so not bothering */ - g_warning ("%s not implemented, need to code cogl_matrix_ortho() if you need this function", + g_warning ("%s not implemented, need to code cogl_matrix_ortho() if you need" + " this function", G_STRFUNC); #endif }