summary refs log tree commit diff stats
path: root/plugins/checksum
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/checksum')
-rw-r--r--plugins/checksum/checksum.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/checksum/checksum.c b/plugins/checksum/checksum.c
index 606159fc..9731876f 100644
--- a/plugins/checksum/checksum.c
+++ b/plugins/checksum/checksum.c
@@ -44,7 +44,7 @@ sha256_hash_string (unsigned char hash[SHA256_DIGEST_LENGTH], char outputBuffer[
 	int i;
 	for (i = 0; i < SHA256_DIGEST_LENGTH; i++)
 	{
-		sprintf(outputBuffer + (i * 2), "%02x", hash[i]);
+		sprintf (outputBuffer + (i * 2), "%02x", hash[i]);
 	}
 	outputBuffer[64] = 0;
 }
@@ -104,7 +104,7 @@ sha256_file (char *path, char outputBuffer[65])
 }
 
 int
-dccrecv_cb(char *word[], void *userdata)
+dccrecv_cb (char *word[], void *userdata)
 {
 	char sum[65];
 
@@ -117,7 +117,7 @@ dccrecv_cb(char *word[], void *userdata)
 }
 
 int
-dccoffer_cb(char *word[], void *userdata)
+dccoffer_cb (char *word[], void *userdata)
 {
 	char sum[65];