Skip to content

Commit

Permalink
Remove unused ptr variable.
Browse files Browse the repository at this point in the history
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4560 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
michaelrsweet committed Sep 9, 2005
1 parent 820b67b commit fcb8f9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Fl_Valuator.cxx
Expand Up @@ -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);
Expand Down

0 comments on commit fcb8f9e

Please sign in to comment.