X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=lib%2Fdynamic-string.c;h=79a7d8ee408c21209abee96f1e41858c8232d388;hb=10dcf8deec96f64e56450bea6cc8801253f15f51;hp=c3338180d250aed389c432031598fde630cb8afa;hpb=a0bc29a541fc7dc6e20137d5558e2094d614e6ab;p=openvswitch diff --git a/lib/dynamic-string.c b/lib/dynamic-string.c index c3338180..79a7d8ee 100644 --- a/lib/dynamic-string.c +++ b/lib/dynamic-string.c @@ -66,7 +66,7 @@ ds_put_uninit(struct ds *ds, size_t n) } void -ds_put_char(struct ds *ds, char c) +ds_put_char__(struct ds *ds, char c) { *ds_put_uninit(ds, 1) = c; }