Remove unused ptr variable.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4560 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet
2005-09-09 11:16:21 +00:00
parent 820b67bc56
commit fcb8f9e056
+1 -1
View File
@@ -125,7 +125,7 @@ int Fl_Valuator::format(char* buffer) {
// Figure out how many digits are required to correctly format the // Figure out how many digits are required to correctly format the
// value. // value.
int i, c = 0; int i, c = 0;
char temp[32], *ptr; char temp[32];
// output a number with many digits after the decimal point. This // output a number with many digits after the decimal point. This
// seems to be needed to get high precission // seems to be needed to get high precission
snprintf(temp, sizeof(temp), "%.12f", A/B); snprintf(temp, sizeof(temp), "%.12f", A/B);