summaryrefslogtreecommitdiff
path: root/bytecode.h
diff options
context:
space:
mode:
authorNick Ing-Simmons <nik@tiuk.ti.com>1998-02-28 11:31:15 +0000
committerNick Ing-Simmons <nik@tiuk.ti.com>1998-02-28 11:31:15 +0000
commit319b3e9ef186494f9113ad230d3224fc10e20bba (patch)
treea56c5eda69cfa7af8b13b20cf16fee0377c6579e /bytecode.h
parent47358472068516b210ba857379e05bbc9b9b4584 (diff)
downloadperl-319b3e9ef186494f9113ad230d3224fc10e20bba.tar.gz
Missed FREAD in bytecode.h
Cannot export svref_mutex in non-threaded perl p4raw-id: //depot/perl@603
Diffstat (limited to 'bytecode.h')
-rw-r--r--bytecode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bytecode.h b/bytecode.h
index 115fec73de..f605e27e55 100644
--- a/bytecode.h
+++ b/bytecode.h
@@ -90,7 +90,7 @@ EXT I32 obj_list_fill INIT(-1);
unsigned short *ary; \
int i; \
New(666, ary, 256, unsigned short); \
- FREAD(ary, 256, 2); \
+ BGET_FREAD(ary, 256, 2); \
for (i = 0; i < 256; i++) \
ary[i] = ntohs(ary[i]); \
arg = (char *) ary; \