[前][次][番号順一覧][スレッド一覧]

ruby-changes:25530

From: naruse <ko1@a...>
Date: Fri, 9 Nov 2012 17:11:52 +0900 (JST)
Subject: [ruby-changes:25530] naruse:r37587 (trunk): Use C90 comment style

naruse	2012-11-09 17:11:44 +0900 (Fri, 09 Nov 2012)

  New Revision: 37587

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=37587

  Log:
    Use C90 comment style

  Modified files:
    trunk/siphash.c

Index: siphash.c
===================================================================
--- siphash.c	(revision 37586)
+++ siphash.c	(revision 37587)
@@ -278,7 +278,7 @@
 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;
     }

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]