diff options
| author | Raghavendra G <raghavendra@zresearch.com> | 2009-02-25 00:47:43 -0800 | 
|---|---|---|
| committer | Anand V. Avati <avati@amp.gluster.com> | 2009-02-25 16:48:57 +0530 | 
| commit | 029913bbd62ed7e3c3f436afe92ad6bca9dc642c (patch) | |
| tree | 61997251396ae95e74efaaa232d65c1d637a23ba /mod_glusterfs/lighttpd/1.5/mod_glusterfs.c | |
| parent | 6609b1d37bd0254ec0eb068758862a0bb0e78515 (diff) | |
change MALLOC to malloc
Signed-off-by: Anand V. Avati <avati@amp.gluster.com>
Diffstat (limited to 'mod_glusterfs/lighttpd/1.5/mod_glusterfs.c')
| -rw-r--r-- | mod_glusterfs/lighttpd/1.5/mod_glusterfs.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/mod_glusterfs/lighttpd/1.5/mod_glusterfs.c b/mod_glusterfs/lighttpd/1.5/mod_glusterfs.c index 4329640e2..919218e1d 100644 --- a/mod_glusterfs/lighttpd/1.5/mod_glusterfs.c +++ b/mod_glusterfs/lighttpd/1.5/mod_glusterfs.c @@ -1086,7 +1086,7 @@ PHYSICALPATH_FUNC(mod_glusterfs_handle_physical) {          if (size)           { -                plugin_ctx->buf = MALLOC (size); +                plugin_ctx->buf = malloc (size);                  /* ERR_ABORT (plugin_ctx->buf); */          }  | 
