Fix minor ostream munging glitch in rprobe.

develop
Kelly Martin 2012-04-22 23:36:13 -05:00
parent 26cec5f60c
commit e06c80f690
1 changed files with 1 additions and 1 deletions

@ -119,7 +119,7 @@ command_result rprobe (color_ostream &out, vector <string> & parameters)
out << endl << setfill('0') << setw(8) << hex << (int)(rd+j) << ": ";
out << " " << setfill('0') << setw(8) << hex << p[j];
}
out << dec << endl;
out << setfill(' ') << setw(0) << dec << endl;
}