Skip to content

Commit

Permalink
Fix OpenBSD build warning when printing off_t
Browse files Browse the repository at this point in the history
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
  • Loading branch information
David Woodhouse authored and David Woodhouse committed Nov 5, 2011
1 parent dcc7437 commit 952dfe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cstp.c
Expand Up @@ -478,7 +478,7 @@ static int inflate_and_queue_packet(struct openconnect_info *vpninfo,

vpn_progress(vpninfo, PRG_TRACE,
_("Received compressed data packet of %ld bytes\n"),
vpninfo->inflate_strm.total_out);
(long)vpninfo->inflate_strm.total_out);

queue_packet(&vpninfo->incoming_queue, new);
return 0;
Expand Down

0 comments on commit 952dfe6

Please sign in to comment.