mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/webrick/httpserver.rb (WEBrick::HTTPServer::unmount): remove
inpect argument from sprintf. [ruby-dev:29039] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10554 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
7b0c9cf2e2
commit
564d84aaae
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Tue Jul 18 14:03:02 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
|
* lib/webrick/httpserver.rb (WEBrick::HTTPServer::unmount): remove
|
||||||
|
inpect argument from sprintf. [ruby-dev:29039]
|
||||||
|
|
||||||
Tue Jul 18 10:53:37 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Tue Jul 18 10:53:37 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* object.c (rb_cstr_to_dbl): limit out-of-range message.
|
* object.c (rb_cstr_to_dbl): limit out-of-range message.
|
||||||
|
|
|
@ -683,7 +683,7 @@ curses_getmouse(VALUE obj)
|
||||||
|
|
||||||
val = Data_Make_Struct(cMouseEvent,struct mousedata,
|
val = Data_Make_Struct(cMouseEvent,struct mousedata,
|
||||||
0,curses_mousedata_free,mdata);
|
0,curses_mousedata_free,mdata);
|
||||||
mdata->mevent = (MEVENT*)malloc(sizeof(MEVENT));
|
mdata->mevent = (MEVENT*)xmalloc(sizeof(MEVENT));
|
||||||
return (getmouse(mdata->mevent) == OK) ? val : Qnil;
|
return (getmouse(mdata->mevent) == OK) ? val : Qnil;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -120,7 +120,7 @@ module WEBrick
|
||||||
end
|
end
|
||||||
|
|
||||||
def unmount(dir)
|
def unmount(dir)
|
||||||
@logger.debug(sprintf("unmount %s.", inspect, dir))
|
@logger.debug(sprintf("unmount %s.", dir))
|
||||||
@mount_tab.delete(dir)
|
@mount_tab.delete(dir)
|
||||||
end
|
end
|
||||||
alias umount unmount
|
alias umount unmount
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue