Fix compiler warnings

pull/1/head
Timothy Pearson 9 years ago
parent 59e5235822
commit 5e9959ef85

@ -206,9 +206,11 @@ KShred::flush()
bool bool
KShred::shred() KShred::shred()
{ {
unsigned char p[6][3] = {{'\222', '\111', '\044'}, {'\111', '\044', '\222'}, // WARNING
{'\044', '\222', '\111'}, {'\155', '\266', '\333'}, // These numbers are octal. Do not remove the leading zeros!
{'\266', '\333', '\155'}, {'\333', '\155', '\266'}}; unsigned char p[6][3] = {{0222, 0111, 044}, {0111, 044, 0222},
{ 044, 0222, 0111}, {0155, 0266, 0333},
{0266, 0333, 0155}, {0333, 0155, 0266}};
TQString msg = i18n("Shredding: pass %1 of 35"); TQString msg = i18n("Shredding: pass %1 of 35");
emit processedSize(0); emit processedSize(0);

Loading…
Cancel
Save