diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2011-08-06 15:53:15 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2011-08-07 22:04:47 +0100 |
commit | c039ce86da94275ffe35f23a87f62586e7b23f49 (patch) | |
tree | ed01de2884a88f39615a9a984c8573e362280733 | |
parent | ae8172b8ffc4135d41ebc15caa9c54884b314e70 (diff) | |
download | libguestfs-c039ce86da94275ffe35f23a87f62586e7b23f49.tar.gz libguestfs-c039ce86da94275ffe35f23a87f62586e7b23f49.tar.xz libguestfs-c039ce86da94275ffe35f23a87f62586e7b23f49.zip |
docs: guestfs_set_out_of_memory_handler returns void, not int.
It always has done. The documentation was wrong.
(cherry picked from commit 70f44cc0ea0bcdd025ed657461e07f6778be44ba)
-rw-r--r-- | src/guestfs.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/guestfs.pod b/src/guestfs.pod index d8156b94..013a9239 100644 --- a/src/guestfs.pod +++ b/src/guestfs.pod @@ -1392,8 +1392,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<cb> will be called if there is an out of memory situation. I<Note this callback must not return>. |