summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorAlejandro Colomar <alx.manpages@gmail.com>2022-06-22 13:33:05 +0200
committerAlejandro Colomar <alx.manpages@gmail.com>2022-08-18 15:43:03 +0200
commit1c2f070ee226256a05ced1eaae08196a375a53b6 (patch)
treefaa24822fefb1306d2f486042e2281a250f499f1 /src
parent6ddf14a6c10294e2200156738929014bf08f74cd (diff)
downloadunit-1c2f070ee226256a05ced1eaae08196a375a53b6.tar.gz
unit-1c2f070ee226256a05ced1eaae08196a375a53b6.tar.bz2
Fixed include guard.
For consistency, use the same pattern as in the rest of the project.
Diffstat (limited to 'src')
-rw-r--r--src/nxt_isolation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nxt_isolation.h b/src/nxt_isolation.h
index 88a5f9e1..b1bfc33c 100644
--- a/src/nxt_isolation.h
+++ b/src/nxt_isolation.h
@@ -2,8 +2,8 @@
* Copyright (C) NGINX, Inc.
*/
-#ifndef _NXT_ISOLATION_H_
-#define _NXT_ISOLATION_H_
+#ifndef _NXT_ISOLATION_H_INCLUDED_
+#define _NXT_ISOLATION_H_INCLUDED_
nxt_int_t nxt_isolation_main_prefork(nxt_task_t *task, nxt_process_t *process,
@@ -15,4 +15,4 @@ nxt_int_t nxt_isolation_prepare_rootfs(nxt_task_t *task,
nxt_int_t nxt_isolation_change_root(nxt_task_t *task, nxt_process_t *process);
#endif
-#endif /* _NXT_ISOLATION_H_ */
+#endif /* _NXT_ISOLATION_H_INCLUDED_ */