aboutsummaryrefslogtreecommitdiffhomepage
path: root/proc.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-28 15:46:38 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-29 16:14:51 -0800
commitebba30d67157cf0dee46edfa5f47a216b1f35ae6 (patch)
tree3563c6ff2c64ad83880e340c014a296eaa90732d /proc.h
parent909d24cde6acf87587370355d7a9cbc7dc18435c (diff)
Fix a "class <-> struct" warning with clang++
Diffstat (limited to 'proc.h')
-rw-r--r--proc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proc.h b/proc.h
index d91cfd9b..1a540669 100644
--- a/proc.h
+++ b/proc.h
@@ -204,7 +204,7 @@ class process_t
int count_help_magic;
/** Next process in pipeline. We own this and we are responsible for deleting it. */
- struct process_t *next;
+ process_t *next;
#ifdef HAVE__PROC_SELF_STAT
/** Last time of cpu time check */
struct timeval last_time;