same as below for here.

2003-01-05  Manish Singh  <yosh@gimp.org>

        * plug-ins/script-fu/interp_regex.c: same as below for here.
This commit is contained in:
Manish Singh 2003-01-05 20:51:39 +00:00 committed by Manish Singh
parent f44e1e92f9
commit 0f3b8463a4
3 changed files with 8 additions and 4 deletions

View file

@ -1,3 +1,7 @@
2003-01-05 Manish Singh <yosh@gimp.org>
* plug-ins/script-fu/interp_regex.c: same as below for here.
2003-01-05 Manish Singh <yosh@gimp.org>
* app/core/gimpimage-new.c: oops, cast here instead of changing the

View file

@ -141,8 +141,8 @@ regex_prin1 (LISP ptr, struct gen_printio *f)
char buffer[256];
regex_t *p;
p = get_tc_regex (ptr)->r;
sprintf (buffer, "#<REGEX %p nsub=%lu",
p, p->re_nsub);
sprintf (buffer, "#<REGEX %p nsub=%d",
p, (int) p->re_nsub);
gput_st (f, buffer);
gput_st (f, ">");
}

View file

@ -141,8 +141,8 @@ regex_prin1 (LISP ptr, struct gen_printio *f)
char buffer[256];
regex_t *p;
p = get_tc_regex (ptr)->r;
sprintf (buffer, "#<REGEX %p nsub=%lu",
p, p->re_nsub);
sprintf (buffer, "#<REGEX %p nsub=%d",
p, (int) p->re_nsub);
gput_st (f, buffer);
gput_st (f, ">");
}