diff options
author | Kai Wasserbäch <[email protected]> | 2011-08-27 17:51:48 +0200 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-08-29 08:02:49 -0600 |
commit | 137ba91aadd7a3a24c1a7d76dd8bd5f7aa477fd2 (patch) | |
tree | 763ad94c5397f7fbb394bd63f73bdef8c8d49db2 /src/gallium/auxiliary/util/u_video.h | |
parent | e106d4c731242dd1ecda0d72767ffa0853c8f3ff (diff) |
util: Fix include style
As explained in the thread starting at [0], the internal include style
should be »#include "path/to/header.h"« for non-system includes.
[0]
<http://news.gmane.org/find-root.php?message_id=%3c4E5802BE.6020206%40vmware.com%3e>
Signed-off-by: Kai Wasserbäch <[email protected]>
Signed-off-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/util/u_video.h')
-rw-r--r-- | src/gallium/auxiliary/util/u_video.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/util/u_video.h b/src/gallium/auxiliary/util/u_video.h index 6b67881e648..be3fac2d010 100644 --- a/src/gallium/auxiliary/util/u_video.h +++ b/src/gallium/auxiliary/util/u_video.h @@ -32,12 +32,12 @@ extern "C" { #endif -#include <pipe/p_defines.h> -#include <pipe/p_video_enums.h> +#include "pipe/p_defines.h" +#include "pipe/p_video_enums.h" /* u_reduce_video_profile() needs these */ -#include <pipe/p_compiler.h> -#include <util/u_debug.h> +#include "pipe/p_compiler.h" +#include "util/u_debug.h" static INLINE enum pipe_video_codec u_reduce_video_profile(enum pipe_video_profile profile) |