summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/xine-utils/utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-utils/utils.c b/src/xine-utils/utils.c
index 1a81ae398..6c7c382c6 100644
--- a/src/xine-utils/utils.c
+++ b/src/xine-utils/utils.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: utils.c,v 1.15 2003/07/16 21:55:02 jstembridge Exp $
+ * $Id: utils.c,v 1.16 2003/07/16 22:11:14 jstembridge Exp $
*
*/
#define _POSIX_PTHREAD_SEMANTICS 1 /* for 5-arg getpwuid_r on solaris */
@@ -193,7 +193,7 @@ void xine_hexdump (char *buf, int length) {
}
for (i=j;i<(j+16<length?j+16:length);i++) {
c=buf[i];
- if ((c>=32) && (c<128))
+ if ((c>=32) && (c<127))
printf ("%c", c);
else
printf (".");