about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2014-02-15 22:34:23 +0000
committerEric Wong <normalperson@yhbt.net>2014-02-15 22:34:48 +0000
commit29bab2bc33d224d89608a521b30bf0a40075ff08 (patch)
tree2d44ca1d8715772eb5ef51f0c64ff38cdbe9d9e9
parenta3562a9a200a1ffd31c472652265bbb234589eb0 (diff)
downloadclogger-29bab2bc33d224d89608a521b30bf0a40075ff08.tar.gz
-rw-r--r--GNUmakefile2
-rw-r--r--ext/clogger_ext/clogger.c2
2 files changed, 1 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 574fffd..49a7c17 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,5 +1,5 @@
 all::
-RSYNC_DEST := rubyforge.org:/var/www/gforge-projects/clogger/
+RSYNC_DEST := clogger.bogomips.org:/srv/clogger/
 rfproject := clogger
 rfpackage := clogger
 include pkg.mk
diff --git a/ext/clogger_ext/clogger.c b/ext/clogger_ext/clogger.c
index 8b05c34..122e7fb 100644
--- a/ext/clogger_ext/clogger.c
+++ b/ext/clogger_ext/clogger.c
@@ -122,7 +122,6 @@ struct clogger {
 static ID write_id;
 static ID ltlt_id;
 static ID call_id;
-static ID each_id;
 static ID close_id;
 static ID to_i_id;
 static ID to_s_id;
@@ -1045,7 +1044,6 @@ void Init_clogger_ext(void)
         write_id = rb_intern("write");
         ltlt_id = rb_intern("<<");
         call_id = rb_intern("call");
-        each_id = rb_intern("each");
         close_id = rb_intern("close");
         to_i_id = rb_intern("to_i");
         to_s_id = rb_intern("to_s");