diff options
author | Josh Triplett <josh@joshtriplett.org> | 2009-10-16 17:06:13 -0400 |
---|---|---|
committer | Josh Triplett <josh@joshtriplett.org> | 2009-11-15 18:01:38 -0500 |
commit | 1b98c00bf3a8a417be6412d8a3ed867a72b18f68 (patch) | |
tree | 589927cbe85bb72273131d91965dbb1b99c63766 | |
parent | ed9df091491dd41d4e054071948c8e2e5b354c99 (diff) |
Documentation/vm/page-types.c: Declare checked_open static
Nothing outside of Documentation/vm/page-types.c references
checked_open.
Signed-off-by: Josh Triplett <josh@joshtriplett.org>
-rw-r--r-- | Documentation/vm/page-types.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/vm/page-types.c b/Documentation/vm/page-types.c index 3ec4f2a22585..4793c6aac733 100644 --- a/Documentation/vm/page-types.c +++ b/Documentation/vm/page-types.c | |||
@@ -218,7 +218,7 @@ static void fatal(const char *x, ...) | |||
218 | exit(EXIT_FAILURE); | 218 | exit(EXIT_FAILURE); |
219 | } | 219 | } |
220 | 220 | ||
221 | int checked_open(const char *pathname, int flags) | 221 | static int checked_open(const char *pathname, int flags) |
222 | { | 222 | { |
223 | int fd = open(pathname, flags); | 223 | int fd = open(pathname, flags); |
224 | 224 | ||