From ebba30d67157cf0dee46edfa5f47a216b1f35ae6 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Tue, 28 Feb 2012 15:46:38 -0800 Subject: [PATCH] Fix a "class <-> struct" warning with clang++ --- proc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proc.h b/proc.h index d91cfd9b2..1a540669b 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;