From: Richard W.M. Jones Date: Sat, 6 Aug 2011 14:53:15 +0000 (+0100) Subject: docs: guestfs_set_out_of_memory_handler returns void, not int. X-Git-Tag: 1.13.3~7 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=70f44cc0ea0bcdd025ed657461e07f6778be44ba;ds=sidebyside docs: guestfs_set_out_of_memory_handler returns void, not int. It always has done. The documentation was wrong. --- diff --git a/src/guestfs.pod b/src/guestfs.pod index a1831c0..8cb1b86 100644 --- a/src/guestfs.pod +++ b/src/guestfs.pod @@ -1453,8 +1453,8 @@ Returns the current error handler callback. =head2 guestfs_set_out_of_memory_handler typedef void (*guestfs_abort_cb) (void); - int guestfs_set_out_of_memory_handler (guestfs_h *g, - guestfs_abort_cb); + void guestfs_set_out_of_memory_handler (guestfs_h *g, + guestfs_abort_cb); The callback C will be called if there is an out of memory situation. I.