summaryrefslogtreecommitdiff
path: root/src/Fl_Valuator.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2005-09-09 11:16:21 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2005-09-09 11:16:21 +0000
commitfcb8f9e056556c4aefb16a7aa24be2461df15346 (patch)
tree65ccd1bd6d010ab84044f2b2300c8beb1dc22524 /src/Fl_Valuator.cxx
parent820b67bc56d122310397d3d9f8608a1b1ebb9996 (diff)
Remove unused ptr variable.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4560 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Valuator.cxx')
-rw-r--r--src/Fl_Valuator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Fl_Valuator.cxx b/src/Fl_Valuator.cxx
index e8431f10b..d08813651 100644
--- a/src/Fl_Valuator.cxx
+++ b/src/Fl_Valuator.cxx
@@ -125,7 +125,7 @@ int Fl_Valuator::format(char* buffer) {
// Figure out how many digits are required to correctly format the
// value.
int i, c = 0;
- char temp[32], *ptr;
+ char temp[32];
// output a number with many digits after the decimal point. This
// seems to be needed to get high precission
snprintf(temp, sizeof(temp), "%.12f", A/B);