]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
maint: remove _(...) from VIR_WARN arg manually
authorJim Meyering <meyering@redhat.com>
Wed, 19 May 2010 10:52:23 +0000 (12:52 +0200)
committerJim Meyering <meyering@redhat.com>
Wed, 19 May 2010 10:52:47 +0000 (12:52 +0200)
* src/util/uuid.c (virUUIDGenerate): Remove _(...) manually.

src/util/uuid.c

index 459273a019f2747a7705362a2b60928f32885a4c..9c626ceace45be78d06afcedf3685afdc1691f96 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2007, 2008, 2009 Red Hat, Inc.
+ * Copyright (C) 2007, 2008, 2009, 2010 Red Hat, Inc.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -101,8 +101,8 @@ virUUIDGenerate(unsigned char *uuid)
 
     if ((err = virUUIDGenerateRandomBytes(uuid, VIR_UUID_BUFLEN))) {
         char ebuf[1024];
-        VIR_WARN(_("Falling back to pseudorandom UUID,"
-                   " failed to generate random bytes: %s"),
+        VIR_WARN("Falling back to pseudorandom UUID,"
+                 " failed to generate random bytes: %s",
                  virStrerror(err, ebuf, sizeof ebuf));
         err = virUUIDGeneratePseudoRandomBytes(uuid, VIR_UUID_BUFLEN);
     }