]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - conout.cpp
Use C++ naming for structures
[xonotic/gmqcc.git] / conout.cpp
index 9d0659b4b691c3a9f44fb1b011af5f514b608cf2..98c428934652a3d36bf58677e8651ea19afb7513 100644 (file)
@@ -5,12 +5,12 @@
 #define GMQCC_IS_STDERR(X) ((X) == stderr)
 #define GMQCC_IS_DEFINE(X) (GMQCC_IS_STDERR(X) || GMQCC_IS_STDOUT(X))
 
-typedef struct {
+struct con_t {
     FILE *handle_err;
     FILE *handle_out;
     int color_err;
     int color_out;
-} con_t;
+};
 
 static con_t console;