diff --git a/ChangeLog b/ChangeLog index 295675fb8c..3ac7f085df 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Nov 21 11:05:14 CET 2008 Daniel Veillard + + * 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 * src/remote_internal.c: Avoid crash on NULL URI scheme diff --git a/po/POTFILES.in b/po/POTFILES.in index 3f8fdd2df0..d9f3abe9b7 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 1213df17ce..69794bccd4 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 ac0c32c813..d5530d9f85 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"