Cleaning up those annoying 'width/height not set' messages

This commit is contained in:
law%netscape.com 1999-06-29 21:57:40 +00:00
Родитель 650fc3493f
Коммит c4c32c49dc
1 изменённых файлов: 0 добавлений и 6 удалений

Просмотреть файл

@ -475,9 +475,6 @@ int main(int argc, char* argv[])
}
if (width) {
PR_sscanf(width, "%d", &widthVal);
fprintf(stderr, "Width is set to %d\n", widthVal);
} else {
fprintf(stderr, "width was not set\n");
}
// Get the value of -height option
@ -487,9 +484,6 @@ int main(int argc, char* argv[])
}
if (height) {
PR_sscanf(height, "%d", &heightVal);
fprintf(stderr, "height is set to %d\n", heightVal);
} else {
fprintf(stderr, "height was not set\n");
}
/*