X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fdynamic-string.c;h=79a7d8ee408c21209abee96f1e41858c8232d388;hb=0ec6cfb13b4d9ef14b90119cf662e47ed559a185;hp=c3338180d250aed389c432031598fde630cb8afa;hpb=e83fd213300e19ad1da4e1ddbc049d4b858d34e8;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; }