|
From: <gi...@gp...> - 2010-04-01 16:53:07
|
The branch, master has been updated
via ed9779ba20a26180b1e30a2f37c5ba1a5039c673 (commit)
from 3f65efa13e373fc05e96dab360086271cdcd8759 (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/report.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
=================
Commit Messages
=================
commit ed9779ba20a26180b1e30a2f37c5ba1a5039c673
Author: DJ Delorie <dj...@de...>
Commit: DJ Delorie <dj...@de...>
Record the calculated length in Report(NetLength)
:100644 100644 974c0be... 08613dd... M src/report.c
=========
Changes
=========
commit ed9779ba20a26180b1e30a2f37c5ba1a5039c673
Author: DJ Delorie <dj...@de...>
Commit: DJ Delorie <dj...@de...>
Record the calculated length in Report(NetLength)
diff --git a/src/report.c b/src/report.c
index 974c0be..08613dd 100644
--- a/src/report.c
+++ b/src/report.c
@@ -693,7 +693,7 @@ ReportNetLength (int argc, char **argv, int x, int y)
RestoreUndoSerialNumber ();
gui->get_coords ("Click on a connection", &x, &y);
- XYtoNetLength (x, y, &found);
+ length = XYtoNetLength (x, y, &found);
if (!found)
{
|