diff options
author | Tiago Vignatti <tiago.vignatti@nokia.com> | 2010-05-25 13:32:18 +0300 |
---|---|---|
committer | Tiago Vignatti <tiago.vignatti@nokia.com> | 2010-05-25 13:32:18 +0300 |
commit | 4fff9d3f0a27de68bd3190a98558a3de1b7a85d2 (patch) | |
tree | 7664988075ae00315e250b3f7b72eeab1dd3a398 /src/g80_output.c | |
parent | 17ab5dbea69e690cbf78c25040db518471e0887f (diff) |
Don't use libcwrappers for calloc and free
Signed-off-by: Tiago Vignatti <tiago.vignatti@nokia.com>
Diffstat (limited to 'src/g80_output.c')
-rw-r--r-- | src/g80_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/g80_output.c b/src/g80_output.c index 5744d94..2da99cb 100644 --- a/src/g80_output.c +++ b/src/g80_output.c @@ -291,7 +291,7 @@ G80I2CInit(ScrnInfoPtr pScrn, const char *name, const int port) if(xf86I2CBusInit(i2c)) { return i2c; } else { - xfree(i2c); + free(i2c); return NULL; } } |