comparison libnnchat.c @ 312:a0c001672b44

Cosmetics.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 11 Jun 2011 06:00:31 +0300
parents 61884ce9db41
children c086345d176b
comparison
equal deleted inserted replaced
311:65c156ef7a9d 312:a0c001672b44
572 } 572 }
573 573
574 574
575 void nn_editbuf_free(nn_editbuf_t *buf) 575 void nn_editbuf_free(nn_editbuf_t *buf)
576 { 576 {
577 if (buf) { 577 if (buf != NULL) {
578 th_free(buf->data); 578 th_free(buf->data);
579 th_free(buf); 579 th_free(buf);
580 } 580 }
581 } 581 }
582 582