fixing get_file_name() of sed

This commit is contained in:
2009-03-24 19:44:31 +00:00
parent 796a10fc92
commit d3534abd0f
2 changed files with 34 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: str_dyn.c 76 2009-02-22 14:18:06Z hyunghwan.chung $
* $Id: str_dyn.c 109 2009-03-24 01:44:31Z hyunghwan.chung $
*
Copyright 2006-2009 Chung, Hyung-Hwan.
@ -217,7 +217,6 @@ qse_size_t qse_str_cat (qse_str_t* str, const qse_char_t* s)
return qse_str_ncat (str, s, qse_strlen(s));
}
qse_size_t qse_str_ncat (qse_str_t* str, const qse_char_t* s, qse_size_t len)
{
if (len > str->capa - str->len)