[libvirt] [PATCH] storage pool discovery

David Lively dlively at virtualiron.com
Fri Aug 22 20:03:38 UTC 2008


On Fri, 2008-08-22 at 19:16 +0200, Jim Meyering wrote:
> > +    const char *name, *path;
> 
> path can be const, too.

It is, at least according to my gcc (4.3.0-8, x86_64, Fedora9).

Compile the following and without FORCE_WARNING to check:

void check()
{
#ifdef FORCE_WARNING
    const char *foo;
    char *bar;
#else
    const char *foo, *bar;
#endif

    foo = "I'm a const char *";
    bar = foo;			// warns iff bar not const char *
}

Dave





More information about the libvir-list mailing list