|
From: <sv...@va...> - 2014-09-08 20:41:42
|
Author: philippe
Date: Mon Sep 8 20:41:30 2014
New Revision: 14504
Log:
Replace wrong <../memcheck.h> by "../memcheck.h"
This might cause the test to fail to compile with clang.
Might be worth merging in 3.10 branch.
Modified:
trunk/memcheck/tests/inlinfo.c
Modified: trunk/memcheck/tests/inlinfo.c
==============================================================================
--- trunk/memcheck/tests/inlinfo.c (original)
+++ trunk/memcheck/tests/inlinfo.c Mon Sep 8 20:41:30 2014
@@ -1,5 +1,5 @@
#include <stdio.h>
-#include <../memcheck.h>
+#include "../memcheck.h"
#define INLINE inline __attribute__((always_inline))
INLINE int fun_d(int argd) {
|