From 4f028544012177a253e661de38211f447a8c580d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Sat, 8 Jun 2019 12:53:57 +0200 Subject: [PATCH] Reclassify unhandled GDS records as information rather than a warning --- gds-utils/gds-parser.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gds-utils/gds-parser.c b/gds-utils/gds-parser.c index 460a063..c71dcd6 100644 --- a/gds-utils/gds-parser.c +++ b/gds-utils/gds-parser.c @@ -690,6 +690,7 @@ int parse_gds_from_file(const char *filename, GList **library_list) } rec_type = gds_convert_unsigend_int16(workbuff); + /* if begin: Allocate structures */ switch (rec_type) { case BGNLIB: @@ -865,7 +866,7 @@ int parse_gds_from_file(const char *filename, GList **library_list) case STRNAME: break; default: - GDS_WARN("Unhandled Record: %04x, len: %u", (unsigned int)rec_type, (unsigned int)rec_data_length); + GDS_INF("Unhandled Record: %04x, len: %u\n", (unsigned int)rec_type, (unsigned int)rec_data_length); break; } /* switch(rec_type) */