~bless/bless/app-lua-bindings

« back to all changes in this revision

Viewing changes to src/app_default_actions.c

  • Committer: Alexandros Frantzis
  • Date: 2010-03-13 21:39:15 UTC
  • Revision ID: alf82@freemail.gr-20100313213915-rzec14dnw9gc9ys3
Fixed code that caused compiler warnings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 * Implementation of some default actions.
24
24
 */
25
25
#include <stdlib.h>
 
26
#include <string.h>
26
27
 
27
28
#include <bls/buffer.h>
28
29
 
792
793
        if (err)
793
794
                return_error(err);
794
795
 
795
 
        fprintf(stderr, "%s: %s\n", __FUNCTION__, (char *)info.arg[1].data);
 
796
        /* Do something interesting here */
796
797
 
797
798
        free_info_args(&info);
798
799