[Libreoffice-commits] core.git: hwpfilter/source
Stephan Bergmann (via logerrit)
logerrit at kemper.freedesktop.org
Fri May 3 11:49:57 UTC 2019
hwpfilter/source/hstyle.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 44238adb52550623c7b8ed905cbf8dc9ba832886
Author: Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Mon Apr 29 17:14:38 2019 +0200
Commit: Stephan Bergmann <sbergman at redhat.com>
CommitDate: Fri May 3 13:48:47 2019 +0200
GCC trunk towards GCC 9 still emits a bogus -Wstringop-truncation
Change-Id: I1e9e439558025030f79e070680831f1139675993
Reviewed-on: https://gerrit.libreoffice.org/66869
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
diff --git a/hwpfilter/source/hstyle.cxx b/hwpfilter/source/hstyle.cxx
index 8950cb46fb67..e0573edf9cad 100644
--- a/hwpfilter/source/hstyle.cxx
+++ b/hwpfilter/source/hstyle.cxx
@@ -67,14 +67,14 @@ void HWPStyle::SetName(int n, char const *name)
{
if (name)
{
-#if defined __GNUC__ && __GNUC__ == 8 && (__GNUC_MINOR__ == 2 || __GNUC_MINOR__ == 3) && !defined __clang__
+#if defined __GNUC__ && (__GNUC__ == 8 || __GNUC__ == 9) && !defined __clang__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wstringop-truncation"
#endif
auto const p = DATA[n].name;
strncpy(p, name, MAXSTYLENAME);
p[MAXSTYLENAME] = '\0'; // just in case, even though the array is zero-initialized
-#if defined __GNUC__ && __GNUC__ == 8 && (__GNUC_MINOR__ == 2 || __GNUC_MINOR__ == 3) && !defined __clang__
+#if defined __GNUC__ && (__GNUC__ == 8 || __GNUC__ == 9) && !defined __clang__
#pragma GCC diagnostic pop
#endif
}
More information about the Libreoffice-commits
mailing list