[gnumeric] Output the correct variable.



commit 79e15f0ebe9e9b9cf333bb4b0b6a60f1ce036a09
Author: J.H.M. Dassen (Ray) <jdassen debian org>
Date:   Thu Sep 16 17:45:18 2010 +0200

    Output the correct variable.
    
    "bt" is the unrecognised bounds type text, whereas "type" is our internal
    representation of a recognised bounds type. Fixes "pass-by-value argument in
    function call is undefined".

 plugins/mps/mps.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/plugins/mps/mps.c b/plugins/mps/mps.c
index 891aaad..2c1b3ee 100644
--- a/plugins/mps/mps.c
+++ b/plugins/mps/mps.c
@@ -413,7 +413,7 @@ mps_parse_bounds (MpsState *state)
 		} else {
 			mps_mark_error (state,
 					_("Invalid bounds type %s"),
-					type);
+					bt);
 			continue;
 		}
 



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