aboutsummaryrefslogtreecommitdiffstats
path: root/print.c
diff options
context:
space:
mode:
authorkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-10-04 08:42:20 +0000
committerkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-10-04 08:42:20 +0000
commite9d2a8fd35a3ceb214298fee00a75ae9f3d992d3 (patch)
tree4ad47366a4f5117e75b1f518ce6e8cc67fe28785 /print.c
parentd709f130ea730b16213147dfcab703d879903ecc (diff)
Fix typo
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30291 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'print.c')
-rw-r--r--print.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/print.c b/print.c
index 5632bcc516..299b1be4db 100644
--- a/print.c
+++ b/print.c
@@ -1073,7 +1073,7 @@ static const print_stream_ops_t print_text_ops = {
};
static print_stream_t *
-print_stream_text_allow(int to_file, FILE *fh)
+print_stream_text_alloc(int to_file, FILE *fh)
{
print_stream_t *stream;
output_text *output;
@@ -1097,13 +1097,13 @@ print_stream_text_new(int to_file, const char *dest)
if (fh == NULL)
return NULL;
- return print_stream_text_allow(to_file, fh);
+ return print_stream_text_alloc(to_file, fh);
}
print_stream_t *
print_stream_text_stdio_new(FILE *fh)
{
- return print_stream_text_allow(TRUE, fh);
+ return print_stream_text_alloc(TRUE, fh);
}
typedef struct {