We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 826ad74 commit bac0e74Copy full SHA for bac0e74
1 file changed
tools/BCD1Creator/BCD1Creator.cpp
@@ -154,7 +154,7 @@ int main(int argc, const char **argv) {
154
// getline(std::cin, CDDetected);
155
}
156
else {
157
- std::cerr << "Invalid choice. Please enter either '1' or '2'." << std::endl;
+ fprintf(stderr, "Invalid choice. Please enter either '1' or '2'.\n");
158
return 1;
159
160
@@ -163,7 +163,7 @@ int main(int argc, const char **argv) {
163
164
// Check if the file is opened successfully
165
if (!outputBCD1.is_open()) {
166
- std::cerr << "Error opening file for writing." << std::endl;
+ fprintf(stderr, "Error opening file for writing.\n");
167
168
169
0 commit comments