diff options
author | Max Kellermann <max@musicpd.org> | 2019-02-19 12:39:29 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2019-02-19 12:39:29 +0100 |
commit | da4bb4c298c0c7894d1a30c727e4d97abec367da (patch) | |
tree | 2af809c476f07728f76966efd787a3067f73076a /src | |
parent | 5b8ff61799300cf3f56c1db9c990e4a43a63c15d (diff) |
fs/io/OutputStream: update include guard
Diffstat (limited to 'src')
-rw-r--r-- | src/fs/io/OutputStream.hxx | 6 | ||||
-rw-r--r-- | src/system/Open.hxx | 1 |
2 files changed, 3 insertions, 4 deletions
diff --git a/src/fs/io/OutputStream.hxx b/src/fs/io/OutputStream.hxx index 7e5220ec3..4cb73c14e 100644 --- a/src/fs/io/OutputStream.hxx +++ b/src/fs/io/OutputStream.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2014-2018 Max Kellermann <max.kellermann@gmail.com> + * Copyright 2014-2019 Max Kellermann <max.kellermann@gmail.com> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -27,8 +27,8 @@ * OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef MPD_OUTPUT_STREAM_HXX -#define MPD_OUTPUT_STREAM_HXX +#ifndef OUTPUT_STREAM_HXX +#define OUTPUT_STREAM_HXX #include <stddef.h> diff --git a/src/system/Open.hxx b/src/system/Open.hxx index 8607a7975..08694a3ed 100644 --- a/src/system/Open.hxx +++ b/src/system/Open.hxx @@ -39,7 +39,6 @@ OpenReadOnly(const char *path); UniqueFileDescriptor OpenWriteOnly(const char *path, int flags=0); - #ifndef _WIN32 UniqueFileDescriptor |