diff -rc src.original/ptimer.c src/ptimer.c *** src.original/ptimer.c Wed Jul 6 15:26:18 2005 --- src/ptimer.c Tue Apr 10 11:41:05 2007 *************** *** 173,180 **** { /* If no clock was found, it means that clock_getres failed for the realtime clock. */ ! logprintf (LOG_NOTQUIET, _("Cannot get REALTIME clock frequency: %s\n"), ! strerror (errno)); /* Use CLOCK_REALTIME, but invent a plausible resolution. */ posix_clock_id = CLOCK_REALTIME; posix_millisec_resolution = 1; --- 173,180 ---- { /* If no clock was found, it means that clock_getres failed for the realtime clock. */ ! /* logprintf (LOG_NOTQUIET, _("Cannot get REALTIME clock frequency: %s\n"), ! strerror (errno)); */ /* Use CLOCK_REALTIME, but invent a plausible resolution. */ posix_clock_id = CLOCK_REALTIME; posix_millisec_resolution = 1; Only in src.original: topas.error diff -rc src.original/utils.c src/utils.c *** src.original/utils.c Mon Jun 27 14:12:20 2005 --- src/utils.c Tue Apr 10 11:41:05 2007 *************** *** 1206,1212 **** setlocale (LC_NUMERIC, ""); lconv = localeconv (); cached_sep = xstrdup (lconv->thousands_sep); ! cached_grouping = xstrdup (lconv->grouping); /* Restore the locale to previous setting. */ setlocale (LC_NUMERIC, oldlocale); if (!*cached_sep) --- 1206,1215 ---- setlocale (LC_NUMERIC, ""); lconv = localeconv (); cached_sep = xstrdup (lconv->thousands_sep); ! if (lconv->grouping) ! cached_grouping = xstrdup (lconv->grouping); ! else ! cached_grouping = "\x03"; /* Restore the locale to previous setting. */ setlocale (LC_NUMERIC, oldlocale); if (!*cached_sep)