configure: remove -Wno-format-nonliteral
[babeltrace.git] / src / string-format / format-error.c
index acf313fb72ffbdd7928ccbd0431a9778340180ed..f6e74390737e5b16c809ac46832e7c7d0aeb802b 100644 (file)
@@ -1,23 +1,7 @@
 /*
- * Copyright EfficiOS, Inc.
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
+ * SPDX-License-Identifier: MIT
  *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
+ * Copyright EfficiOS, Inc.
  */
 
 #define BT_LOG_OUTPUT_LEVEL log_level
@@ -155,9 +139,12 @@ gchar *format_bt_error(
                        i == bt_error_get_cause_count(error) - 1 ?
                                "%s%sERROR%s:    " : "%s%sCAUSED BY%s ";
 
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wformat-nonliteral"
                /* Print prefix */
                g_string_append_printf(str, prefix_fmt,
                        codes.bold, codes.fg_bright_red, codes.reset);
+#pragma GCC diagnostic pop
 
                g_free(error_cause_str);
                error_cause_str = format_bt_error_cause(cause, columns,
This page took 0.022601 seconds and 4 git commands to generate.