mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Merge pull request #618 from iij/pr-generator-off-by-one
fix an off-by-one error in mrbgems generator.
This commit is contained in:
+3
-2
@@ -60,8 +60,9 @@ static char
|
||||
* String which will be the replacement
|
||||
*
|
||||
*/
|
||||
static char
|
||||
*replace(const char *s, const char *old, const char *new)
|
||||
|
||||
static char *
|
||||
replace(const char *s, const char *old, const char *new)
|
||||
{
|
||||
char *ret;
|
||||
int i, count = 0;
|
||||
|
||||
Reference in New Issue
Block a user