diff options
author | Daniel Veillard <veillard@redhat.com> | 2008-11-21 10:06:28 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@redhat.com> | 2008-11-21 10:06:28 +0000 |
commit | 481522133342644d42297faff14322915636b6fb (patch) | |
tree | 71399cf5f184f116d1c71442e24a74af16009cb4 | |
parent | Fix crash on NULL uri scheme (diff) | |
download | libvirt-481522133342644d42297faff14322915636b6fb.tar.gz libvirt-481522133342644d42297faff14322915636b6fb.tar.bz2 libvirt-481522133342644d42297faff14322915636b6fb.zip |
* po/POTFILES.in src/uml_conf.h src/uml_driver.c: fixes syntax
check errors, reported by Ben Guthro
daniel
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | po/POTFILES.in | 2 | ||||
-rw-r--r-- | src/uml_conf.h | 12 | ||||
-rw-r--r-- | src/uml_driver.c | 1 |
4 files changed, 13 insertions, 7 deletions
@@ -1,3 +1,8 @@ +Fri Nov 21 11:05:14 CET 2008 Daniel Veillard <veillard@redhat.com> + + * po/POTFILES.in src/uml_conf.h src/uml_driver.c: fixes syntax + check errors, reported by Ben Guthro + Thu Nov 20 14:31:00 GMT 2008 Daniel Berrange <berrange@redhat.com> * src/remote_internal.c: Avoid crash on NULL URI scheme diff --git a/po/POTFILES.in b/po/POTFILES.in index 3f8fdd2df..d9f3abe9b 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -28,6 +28,8 @@ src/storage_backend_logical.c src/storage_conf.c src/storage_driver.c src/test.c +src/uml_conf.c +src/uml_driver.c src/util.c src/uuid.c src/virsh.c diff --git a/src/uml_conf.h b/src/uml_conf.h index 1213df17c..69794bccd 100644 --- a/src/uml_conf.h +++ b/src/uml_conf.h @@ -64,11 +64,11 @@ struct uml_driver { virCapsPtr umlCapsInit (void); int umlBuildCommandLine (virConnectPtr conn, - struct uml_driver *driver, - virDomainObjPtr dom, - const char ***retargv, - const char ***retenv, - int **tapfds, - int *ntapfds); + struct uml_driver *driver, + virDomainObjPtr dom, + const char ***retargv, + const char ***retenv, + int **tapfds, + int *ntapfds); #endif /* __UML_CONF_H */ diff --git a/src/uml_driver.c b/src/uml_driver.c index ac0c32c81..d5530d9f8 100644 --- a/src/uml_driver.c +++ b/src/uml_driver.c @@ -51,7 +51,6 @@ #include "uml_driver.h" #include "uml_conf.h" -#include "c-ctype.h" #include "event.h" #include "buf.h" #include "util.h" |