diff mbox

statd: include stdlib.h in simu.c

Message ID 1389225273-24273-1-git-send-email-rees@umich.edu (mailing list archive)
State New, archived
Headers show

Commit Message

Jim Rees Jan. 8, 2014, 11:54 p.m. UTC
Prevents undefined ref to NULL.

Signed-off-by: Jim Rees <rees@umich.edu>
---
 utils/statd/simu.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Jim Rees Jan. 9, 2014, 12:36 a.m. UTC | #1
Jim Rees wrote:

  Prevents undefined ref to NULL.
  
You can probably ignore this. I missed an autogen.
--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Steve Dickson Jan. 9, 2014, 4:04 p.m. UTC | #2
On 08/01/14 19:36, Jim Rees wrote:
> Jim Rees wrote:
> 
>   Prevents undefined ref to NULL.
>   
> You can probably ignore this. I missed an autogen.
Considered ignored! ;-) 

steved.
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/utils/statd/simu.c b/utils/statd/simu.c
index f1d0bf8..8932650 100644
--- a/utils/statd/simu.c
+++ b/utils/statd/simu.c
@@ -8,6 +8,7 @@ 
 #include <config.h>
 #endif
 
+#include <stdlib.h>
 #include <netdb.h>
 #include <arpa/inet.h>