util: Fix include style
authorKai Wasserbäch <kai@dev.carbon-project.org>
Sat, 27 Aug 2011 15:51:48 +0000 (17:51 +0200)
committerBrian Paul <brianp@vmware.com>
Mon, 29 Aug 2011 14:02:49 +0000 (08:02 -0600)
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 <kai@dev.carbon-project.org>
Signed-off-by: Brian Paul <brianp@vmware.com>
src/gallium/auxiliary/util/u_debug_describe.c
src/gallium/auxiliary/util/u_debug_refcnt.c
src/gallium/auxiliary/util/u_debug_refcnt.h
src/gallium/auxiliary/util/u_video.h

index 7ed8ee608a80577b93fd7b55ee57f9b0d492a0ab..3574accc0043e3b46cd65940f62e6b620218288b 100644 (file)
  *
  **************************************************************************/
 
-#include <pipe/p_state.h>
-#include <util/u_format.h>
-#include <util/u_debug_describe.h>
-#include <util/u_string.h>
+#include "pipe/p_state.h"
+#include "util/u_format.h"
+#include "util/u_debug_describe.h"
+#include "util/u_string.h"
 
 void
 debug_describe_reference(char* buf, const struct pipe_reference*ptr)
index 6f706a35fda355232bd980c4518c619e408cd0b3..b3e38940850355bb2a4917f95cf3c2f3eff6cd73 100644 (file)
 /* see http://www.mozilla.org/performance/refcnt-balancer.html for what do with the output
  * on Linux, use tools/addr2line.sh to postprocess it before anything else
  **/
-#include <util/u_debug.h>
-#include <util/u_debug_refcnt.h>
-#include <util/u_debug_stack.h>
-#include <util/u_debug_symbol.h>
-#include <util/u_string.h>
-#include <util/u_hash_table.h>
-#include <os/os_thread.h>
-#include <os/os_stream.h>
+#include "util/u_debug.h"
+#include "util/u_debug_refcnt.h"
+#include "util/u_debug_stack.h"
+#include "util/u_debug_symbol.h"
+#include "util/u_string.h"
+#include "util/u_hash_table.h"
+#include "os/os_thread.h"
+#include "os/os_stream.h"
 
 int debug_refcnt_state;
 
index bea2d1c478a4c9d48ffefbd206746bd955a3feb6..c02fba27ddfff50b68ef325bf61424a4ba8ccf98 100644 (file)
@@ -27,8 +27,8 @@
 #ifndef U_DEBUG_REFCNT_H_
 #define U_DEBUG_REFCNT_H_
 
-#include <pipe/p_config.h>
-#include <pipe/p_state.h>
+#include "pipe/p_config.h"
+#include "pipe/p_state.h"
 
 #ifdef __cplusplus
 extern "C" {
index 6b67881e6487722bf67df698dae8ad6f5daa9de7..be3fac2d010a01bbc03e4a3c9387655dcc2d5de3 100644 (file)
 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)