Unneeded volatile qualifier in fmgr.c

Julien Rouhaud <rjuju123@gmail.com>

From: Julien Rouhaud <rjuju123@gmail.com>
To: pgsql-hackers@lists.postgresql.org
Date: 2025-02-12T08:25:38Z
Lists: pgsql-hackers

Attachments

Hi,

While reading some code in fmgr.c I noticed that the save_nestlevel variable is
declared as volatile.  I'm assuming that's because a long time ago it was
modified in the PG_TRY / PG_CATCH block but it doesn't look needed anymore.

Trivial patch attached.