[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * tp/Texinfo/XS/main/utils.c (clear_option, free_
From: |
Gavin D. Smith |
Subject: |
branch master updated: * tp/Texinfo/XS/main/utils.c (clear_option, free_option) (initialize_option): Add a no-op compund statment to mitigate errors from GCC. |
Date: |
Wed, 29 May 2024 16:10:29 -0400 |
This is an automated email from the git hooks/post-receive script.
gavin pushed a commit to branch master
in repository texinfo.
The following commit(s) were added to refs/heads/master by this push:
new c01eb14681 * tp/Texinfo/XS/main/utils.c (clear_option, free_option)
(initialize_option): Add a no-op compund statment to mitigate errors from GCC.
c01eb14681 is described below
commit c01eb1468135c7a2bac3217f0cc540c2ecc6e998
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Wed May 29 21:10:02 2024 +0100
* tp/Texinfo/XS/main/utils.c (clear_option, free_option)
(initialize_option): Add a no-op compund statment to mitigate
errors from GCC.
---
ChangeLog | 6 ++++++
tp/Texinfo/XS/main/utils.c | 3 +++
2 files changed, 9 insertions(+)
diff --git a/ChangeLog b/ChangeLog
index 6cce0459af..f2ae2af354 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2024-05-29 Alfred M. Szmidt <ams@gnu.org> (tiny change)
+
+ * tp/Texinfo/XS/main/utils.c (clear_option, free_option)
+ (initialize_option): Add a no-op compund statment to mitigate
+ errors from GCC.
+
2024-05-29 Patrice Dumas <pertusus@free.fr>
* tp/Texinfo/XS/parsetexi/api.c (parse_file): cast the decode_string
diff --git a/tp/Texinfo/XS/main/utils.c b/tp/Texinfo/XS/main/utils.c
index 6d209b699c..b90549afab 100644
--- a/tp/Texinfo/XS/main/utils.c
+++ b/tp/Texinfo/XS/main/utils.c
@@ -1610,6 +1610,7 @@ clear_option (OPTION *option)
option->integer = -1;
default:
+ break;
}
}
@@ -1641,6 +1642,7 @@ free_option (OPTION *option)
case GOT_integer:
default:
+ break;
}
}
@@ -1676,6 +1678,7 @@ initialize_option (OPTION *option, enum
global_option_type type)
break;
default:
+ break;
}
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * tp/Texinfo/XS/main/utils.c (clear_option, free_option) (initialize_option): Add a no-op compund statment to mitigate errors from GCC.,
Gavin D. Smith <=