[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: pcb.git: branch: master updated (1d674bcfe2388533001b7789d348ac5fcfa1b788)



The branch, master has been updated
       via  1d674bcfe2388533001b7789d348ac5fcfa1b788 (commit)
      from  b402a144e19225f0648189bca6fbfad95d046047 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


=========
 Summary
=========

 src/hid/ps/ps.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


=================
 Commit Messages
=================

commit 1d674bcfe2388533001b7789d348ac5fcfa1b788
Author: Dan McMahill <dan@xxxxxxxxxxxx>
Commit: Dan McMahill <dan@xxxxxxxxxxxx>

    Fix an obvious bug in the previous commit.  Caught by harry.

:100644 100644 d680903... f21ce84... M	src/hid/ps/ps.c

=========
 Changes
=========

commit 1d674bcfe2388533001b7789d348ac5fcfa1b788
Author: Dan McMahill <dan@xxxxxxxxxxxx>
Commit: Dan McMahill <dan@xxxxxxxxxxxx>

    Fix an obvious bug in the previous commit.  Caught by harry.

diff --git a/src/hid/ps/ps.c b/src/hid/ps/ps.c
index d680903..f21ce84 100644
--- a/src/hid/ps/ps.c
+++ b/src/hid/ps/ps.c
@@ -1124,13 +1124,13 @@ ps_fill_rect (hidGC gc, int x1, int y1, int x2, int y2)
   if (x1 > x2)
     {
       int t = x1;
-      x2 = x1;
+      x1 = x2;
       x2 = t;
     }
   if (y1 > y2)
     {
       int t = y1;
-      y2 = y1;
+      y1 = y2;
       y2 = t;
     }
 #if 0




_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs