diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2011-04-30 05:49:06 -0400 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2011-04-30 05:49:06 -0400 |
commit | 10167cea98f93a74abe63f0a54d3a662997e7489 (patch) | |
tree | 0e0970163741ca0afbec566942ed27c86a231f25 /src/virt.c | |
parent | 478b2d80ed1d613f621e89a97a0b140004ebac29 (diff) | |
download | libguestfs-10167cea98f93a74abe63f0a54d3a662997e7489.tar.gz libguestfs-10167cea98f93a74abe63f0a54d3a662997e7489.tar.xz libguestfs-10167cea98f93a74abe63f0a54d3a662997e7489.zip |
internal: Use size_t instead of int for command line size.
Diffstat (limited to 'src/virt.c')
-rw-r--r-- | src/virt.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -305,7 +305,7 @@ static int guestfs___add_libvirt_dom (guestfs_h *g, virDomainPtr dom, const struct guestfs___add_libvirt_dom_argv *optargs) { - int cmdline_pos; + size_t cmdline_pos; int r; int readonly; const char *iface; |