1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-17 01:00:20 +02:00

Some signed/unsigned comparison and conversions

* libguile/ports.c (scm_lfwrite_str, scm_lfwrite_substr): signed/unsigned
  conversion and comparison

* libguile/strings.c (scm_string_append): signed/unsigned comparison
This commit is contained in:
Michael Gran 2009-08-12 08:50:12 -07:00
parent 94ff26b96b
commit bd4911efd2
2 changed files with 3 additions and 3 deletions

View file

@ -1297,7 +1297,7 @@ SCM_DEFINE (scm_string_append, "string-append", 0, 0, 1,
size_t len = 0;
int wide = 0;
SCM l, s;
int i;
size_t i;
union
{
char *narrow;