aboutsummaryrefslogtreecommitdiffstats
path: root/siphash.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-09 08:11:44 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-09 08:11:44 +0000
commit5bde05f98f97557e0d040d7a579111e5bb0f2c0e (patch)
tree784f74a4da61d972275861958ebdc33156a3f3d6 /siphash.c
parent525cb66467ff22a50f2e6bf307924459d38cd592 (diff)
downloadruby-5bde05f98f97557e0d040d7a579111e5bb0f2c0e.tar.gz
Use C90 comment style
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37587 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'siphash.c')
-rw-r--r--siphash.c2
1 files changed, 1 insertions, 1 deletions
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;
}