two typos
Gurusamy Sarathy [Wed, 14 Oct 1998 05:38:01 +0000 (05:38 +0000)]
p4raw-id: //depot/perl@1948

pp_hot.c
t/op/eval.t

index 859dcfb..fa947cf 100644 (file)
--- a/pp_hot.c
+++ b/pp_hot.c
@@ -1262,7 +1262,7 @@ do_readline(void)
                    warner(WARN_CLOSED,
                           "glob failed (child exited with status %d%s)",
                           STATUS_CURRENT >> 8,
-                          (STATUS_CURRENT & 0xFF) ? ", core dumped" : "");
+                          (STATUS_CURRENT & 0x80) ? ", core dumped" : "");
                }
            }
            if (gimme == G_SCALAR) {
index 5a9c198..0d2a90b 100755 (executable)
@@ -1,6 +1,6 @@
 #!./perl
 
-print "1..27\n";
+print "1..28\n";
 
 eval 'print "ok 1\n";';