summaryrefslogtreecommitdiffstats
path: root/gl/msvc-inval.h
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2026-03-26 12:53:53 +0100
committerGitHub <noreply@github.com>2026-03-26 12:53:53 +0100
commit13e14a6bfd9f29cbfeab0c5161d2a994f97532e7 (patch)
tree3aa7186fe092e42783dc7e981dc39a74ea61c466 /gl/msvc-inval.h
parent9d8503f90ef25b2cecd324dc118e441f40233ea8 (diff)
downloadmonitoring-plugins-13e14a6bfd9f29cbfeab0c5161d2a994f97532e7.tar.gz
Update/gnulib 2026 03 (#2247)HEADmaster
* Sync with the 202601-stable Gnulib code (4a3650d887) * Ignore more deps stuff in gnulib * Remove autogenerated gnulib files * Ignore more gnulib generated headers
Diffstat (limited to 'gl/msvc-inval.h')
-rw-r--r--gl/msvc-inval.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gl/msvc-inval.h b/gl/msvc-inval.h
index 9bb8a156..25bb6a3a 100644
--- a/gl/msvc-inval.h
+++ b/gl/msvc-inval.h
@@ -1,5 +1,5 @@
1/* Invalid parameter handler for MSVC runtime libraries. 1/* Invalid parameter handler for MSVC runtime libraries.
2 Copyright (C) 2011-2025 Free Software Foundation, Inc. 2 Copyright (C) 2011-2026 Free Software Foundation, Inc.
3 3
4 This file is free software: you can redistribute it and/or modify 4 This file is free software: you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as 5 it under the terms of the GNU Lesser General Public License as
@@ -179,9 +179,9 @@ extern struct gl_msvc_inval_per_thread *gl_msvc_inval_current (void);
179# define TRY_MSVC_INVAL \ 179# define TRY_MSVC_INVAL \
180 do \ 180 do \
181 { \ 181 { \
182 struct gl_msvc_inval_per_thread *msvc_inval_current; \
183 gl_msvc_inval_ensure_handler (); \ 182 gl_msvc_inval_ensure_handler (); \
184 msvc_inval_current = gl_msvc_inval_current (); \ 183 struct gl_msvc_inval_per_thread *msvc_inval_current = \
184 gl_msvc_inval_current (); \
185 /* First, initialize gl_msvc_inval_restart. */ \ 185 /* First, initialize gl_msvc_inval_restart. */ \
186 if (setjmp (msvc_inval_current->restart) == 0) \ 186 if (setjmp (msvc_inval_current->restart) == 0) \
187 { \ 187 { \