diff options
| author | Luke Howard <lukeh@padl.com> | 2011-11-14 14:43:24 +1100 | 
|---|---|---|
| committer | Luke Howard <lukeh@padl.com> | 2011-11-14 14:43:24 +1100 | 
| commit | 90b5bec53a28b05fb48ecac956310b6a27145090 (patch) | |
| tree | b5b56a949c2963502019929c3cdbd40e48cb9571 | |
| parent | 718bb36ae58944ea6eaa86a3df646e0797ce615c (diff) | |
don't return in void function
| -rw-r--r-- | lib/avp.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -54,7 +54,7 @@ rs_avp_name (rs_const_avp *vp)  void  rs_avp_append (rs_avp **head, rs_avp *tail)  { -  return nr_vps_append (head, tail); +  nr_vps_append (head, tail);  }  rs_avp * | 
