]> git.ipfire.org Git - thirdparty/libvirt.git/commit
datatypes: avoid redundant __FUNCTION__
authorEric Blake <eblake@redhat.com>
Wed, 12 May 2010 02:57:56 +0000 (20:57 -0600)
committerEric Blake <eblake@redhat.com>
Fri, 14 Jan 2011 22:36:38 +0000 (15:36 -0700)
commitd9b04947793d627be82f55c026d856fcd3374f74
tree0c833d9555e43d21896e6250844ccd23747a56d4
parentfe053dbea761573c96617b01f41f1fd3e50b1330
datatypes: avoid redundant __FUNCTION__

virLibConnError already includes __FUNCTION__ in its output, so we
were redundant.  Furthermore, clang warns that __FUNCTION__ is not
a string literal (at least __FUNCTION__ will never contain %, so
it was not a security risk).

* src/datatypes.c: Replace __FUNCTION__ with a descriptive string.
src/datatypes.c