summaryrefslogtreecommitdiff
path: root/src/crypt_zip.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-11-30 20:52:27 +0100
committerBram Moolenaar <Bram@vim.org>2019-11-30 20:52:27 +0100
commitc667da5185ce5dce914d2006d62da2be0cedb384 (patch)
treecd06b08e9fb7d701653850cd33524d3f1f5acaaf /src/crypt_zip.c
parent71136db1bfbc67c2e55f8070cdf0a241c643e45b (diff)
downloadvim-git-c667da5185ce5dce914d2006d62da2be0cedb384.tar.gz
patch 8.1.2368: using old C style commentsv8.1.2368
Problem: Using old C style comments. Solution: Use // comments where appropriate.
Diffstat (limited to 'src/crypt_zip.c')
-rw-r--r--src/crypt_zip.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/crypt_zip.c b/src/crypt_zip.c
index ec8c16edf..42abe9350 100644
--- a/src/crypt_zip.c
+++ b/src/crypt_zip.c
@@ -23,10 +23,10 @@
* problem since this code was originally created in Europe and India.
*/
-/* Need a type that should be 32 bits. 64 also works but wastes space. */
-typedef unsigned int u32_T; /* int is at least 32 bits */
+// Need a type that should be 32 bits. 64 also works but wastes space.
+typedef unsigned int u32_T; // int is at least 32 bits
-/* The state of encryption, referenced by cryptstate_T. */
+// The state of encryption, referenced by cryptstate_T.
typedef struct {
u32_T keys[3];
} zip_state_T;
@@ -151,4 +151,4 @@ crypt_zip_decode(
}
}
-#endif /* FEAT_CRYPT */
+#endif // FEAT_CRYPT