Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[maintenance] xa_auth.h: avoid using reserved macro names
Macros beginning with `_` are reserved by the language.

Fixes a CodeChecker warning.

Signed-off-by: Edwin Török <[email protected]>
  • Loading branch information
edwintorok committed Mar 4, 2025
commit 6ee60f1c146ebd91b1a8ba70b0c87cf95ec1dfb7
4 changes: 2 additions & 2 deletions ocaml/auth/xa_auth.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*/
#ifndef _XA_AUTH_H_
#define _XA_AUTH_H_
#ifndef XA_AUTH_H_
#define XA_AUTH_H_

#define XA_SUCCESS 0
#define XA_ERR_EXTERNAL 1
Expand Down