Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 4 Jan 2012 20:05:38 +0000 (UTC)
From:      "Pedro F. Giffuni" <pfg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r229516 - head/lib/libvgl
Message-ID:  <201201042005.q04K5cCg094137@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pfg
Date: Wed Jan  4 20:05:38 2012
New Revision: 229516
URL: http://svn.freebsd.org/changeset/base/229516

Log:
  Quiet down clang -Werror.
  
  Reported by:	Pawel Worach
  Approved by:	jhb (mentor)

Modified:
  head/lib/libvgl/simple.c

Modified: head/lib/libvgl/simple.c
==============================================================================
--- head/lib/libvgl/simple.c	Wed Jan  4 19:53:32 2012	(r229515)
+++ head/lib/libvgl/simple.c	Wed Jan  4 20:05:38 2012	(r229516)
@@ -242,8 +242,8 @@ VGLLine(VGLBitmap *object, int x1, int y
   if (x1 > x2) {      /* start from the smaller coordinate */
     x = x2;
     y = y2;
-    x1 = x1;
-    y1 = y1;
+/*  x1 = x1;
+    y1 = y1; */
   } else {
     x = x1;
     y = y1;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201201042005.q04K5cCg094137>