diff options
Diffstat (limited to 'src/examples/demo.c')
-rw-r--r-- | src/examples/demo.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/examples/demo.c b/src/examples/demo.c index 9bd04fee..8b0fa881 100644 --- a/src/examples/demo.c +++ b/src/examples/demo.c | |||
@@ -781,9 +781,15 @@ generate_page (void *cls, | |||
781 | } | 781 | } |
782 | 782 | ||
783 | 783 | ||
784 | /** | ||
785 | * Function called if we get a SIGPIPE. Does nothing. | ||
786 | * | ||
787 | * @param sig will be SIGPIPE (ignored) | ||
788 | */ | ||
784 | static void | 789 | static void |
785 | catcher (int sig) | 790 | catcher (int sig) |
786 | { | 791 | { |
792 | /* do nothing */ | ||
787 | } | 793 | } |
788 | 794 | ||
789 | 795 | ||