Fixed typo.

This commit is contained in:
Martin Baulig
1998-05-22 23:55:35 +00:00
parent cd9d6bbb39
commit 29ba1a484b
2 changed files with 3 additions and 3 deletions

View File

@@ -26,10 +26,10 @@ export CC CXX RANLIB LD AS AR NM
AC_LC_SYSDEPS AC_LC_SYSDEPS
if test x$ac_cv_want_guile = xyes ; then if test x$libgtop_want_guile = xyes ; then
GNOME_CHECK_GUILE GNOME_CHECK_GUILE
if test x$ac_cv_guile_found = xyes ; then if test x$ac_cv_guile_found = xyes ; then
if test x$ac_cv_want_names = xyes ; then if test x$libgtop_want_names = xyes ; then
AC_DEFINE(GLIBTOP_GUILE_NAMES) AC_DEFINE(GLIBTOP_GUILE_NAMES)
fi fi
guile_examples='third third_static third_linux' guile_examples='third third_static third_linux'

View File

@@ -52,7 +52,7 @@ glibtop_guile_types_proc_mem (void)
for (i = 0; i < GLIBTOP_MAX_PROC_MEM; i++) for (i = 0; i < GLIBTOP_MAX_PROC_MEM; i++)
list = gh_append2 list = gh_append2
(list, gh_list (list, gh_list
(gh_str02scm (glibtop_labels_proc_mem [i]), (gh_str02scm (glibtop_types_proc_mem [i]),
SCM_UNDEFINED)); SCM_UNDEFINED));
return list; return list;