]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
esx_util: Drop extra spacing
authorMichal Privoznik <mprivozn@redhat.com>
Thu, 8 Jan 2026 14:50:41 +0000 (15:50 +0100)
committerMichal Privoznik <mprivozn@redhat.com>
Thu, 8 Jan 2026 15:32:50 +0000 (16:32 +0100)
Per our coding style, function shall be separated by either a
single line or two lines. But in esx_util.c functions are
separated by three or even four blank lines. Drop excessive
spacing.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
src/esx/esx_util.c

index 9b714d90ba80e9650cc46c666939a1e802269d59..88b3dc893ff453bb8cc68d35381fcdb023c65b87 100644 (file)
@@ -159,8 +159,6 @@ esxUtil_ParseUri(esxUtil_ParsedUri **parsedUri, virURI *uri)
 }
 
 
-
-
 void
 esxUtil_FreeParsedUri(esxUtil_ParsedUri **parsedUri)
 {
@@ -177,7 +175,6 @@ esxUtil_FreeParsedUri(esxUtil_ParsedUri **parsedUri)
 }
 
 
-
 int
 esxUtil_ParseVirtualMachineIDString(const char *id_string, int *id)
 {
@@ -198,7 +195,6 @@ esxUtil_ParseVirtualMachineIDString(const char *id_string, int *id)
 }
 
 
-
 int
 esxUtil_ParseDatastorePath(const char *datastorePath, char **datastoreName,
                            char **directoryName, char **directoryAndFileName)
@@ -271,7 +267,6 @@ esxUtil_ParseDatastorePath(const char *datastorePath, char **datastoreName,
 }
 
 
-
 int
 esxUtil_ResolveHostname(const char *hostname, char **ipAddress)
 {
@@ -319,7 +314,6 @@ esxUtil_ResolveHostname(const char *hostname, char **ipAddress)
 }
 
 
-
 int
 esxUtil_ReformatUuid(const char *input, char *output)
 {
@@ -338,7 +332,6 @@ esxUtil_ReformatUuid(const char *input, char *output)
 }
 
 
-
 char *
 esxUtil_EscapeBase64(const char *string)
 {
@@ -394,7 +387,6 @@ esxUtil_EscapeBase64(const char *string)
 }
 
 
-
 void
 esxUtil_ReplaceSpecialWindowsPathChars(char *string)
 {
@@ -418,7 +410,6 @@ esxUtil_ReplaceSpecialWindowsPathChars(char *string)
 }
 
 
-
 char *
 esxUtil_EscapeDatastoreItem(const char *string)
 {
@@ -438,7 +429,6 @@ esxUtil_EscapeDatastoreItem(const char *string)
 }
 
 
-
 char *
 esxUtil_EscapeForXml(const char *string)
 {