From 5bde05f98f97557e0d040d7a579111e5bb0f2c0e Mon Sep 17 00:00:00 2001 From: naruse Date: Fri, 9 Nov 2012 08:11:44 +0000 Subject: Use C90 comment style git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37587 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- siphash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'siphash.c') diff --git a/siphash.c b/siphash.c index 55efe5ef22..2e3093ed0d 100644 --- a/siphash.c +++ b/siphash.c @@ -278,7 +278,7 @@ static inline void int_sip_pad_final_block(sip_state *state) { int i; - //pad with 0's and finalize with msg_len mod 256 + /* pad with 0's and finalize with msg_len mod 256 */ for (i = state->buflen; i < sizeof(uint64_t); i++) { state->buf[i] = 0x00; } -- cgit v1.2.3