CB100

Notas, resueltos y tps de la materia Algoritmos y Estructuras de Datos
Index Commits Files Refs README
commit 3371fdfebda510381d276a60c5efc57916b6652f
parent bf27a83efcf97aa6b2bfc125f4ca4ac98b24cdea
Author: Martin Kloeckner <mjkloeckner@gmail.com>
Date:   Tue, 26 Mar 2024 00:31:40 -0300

Add mssing new line in file open error message

Diffstat:
Mtps/1/main.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tps/1/main.cpp b/tps/1/main.cpp
@@ -30,7 +30,7 @@ int main (void) {
 
     fp.open(OUTPUT_FILE_PATH);
     if (!fp.is_open()) {
-        std::cerr << "ERROR: No se pudo abrir `" OUTPUT_FILE_PATH << "`";
+        std::cerr << "ERROR: No se pudo abrir `" OUTPUT_FILE_PATH "`\n";
         return -1;
     }