From: Andre Noll Date: Thu, 9 Jul 2009 14:14:28 +0000 (+0200) Subject: Merge branch 'master' into next X-Git-Tag: v0.4.0~53 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=6f5030f4b257aba7ea4265ef3ae35d96477bbfc3;hp=-c Merge branch 'master' into next --- 6f5030f4b257aba7ea4265ef3ae35d96477bbfc3 diff --combined fade.c index 0304f4c6,8fb02d40..aa7997eb --- a/fade.c +++ b/fade.c @@@ -6,9 -6,13 +6,9 @@@ /** \file fade.c A volume fader and alarm clock for linux. */ +#include #include #include - -#include "fade.cmdline.h" -#include "para.h" -#include "fd.h" - #include #include #include /* EXIT_SUCCESS */ @@@ -17,13 -21,10 +17,13 @@@ #include #include #include + +#include "fade.cmdline.h" +#include "para.h" +#include "fd.h" #include "string.h" #include "error.h" - INIT_FADE_ERRLISTS; struct fade_args_info conf; @@@ -216,7 -217,7 +216,7 @@@ static int sweet_dreams(void tm->tm_sec = 0; } else { t1 += 9 * 60 * 60; /* nine hours from now */ - PARA_INFO_LOG("default wake time: %lu\n", t1); + PARA_INFO_LOG("default wake time: %lu\n", (long unsigned)t1); tm = localtime(&t1); } wake_time_epoch = mktime(tm); diff --combined filter.c index 41136904,17b7f2fd..99b12217 --- a/filter.c +++ b/filter.c @@@ -6,9 -6,8 +6,9 @@@ /** \file filter.c The stand-alone filter program. */ -#include "para.h" +#include +#include "para.h" #include "filter.cmdline.h" #include "list.h" #include "sched.h" @@@ -122,6 -121,7 +122,7 @@@ static int parse_config(int argc, char HANDLE_VERSION_FLAG("filter", conf); if (conf.help_given || conf.detailed_help_given) print_help_and_die(); + loglevel = get_loglevel_by_name(conf.loglevel_arg); if (!cf) { char *home = para_homedir(); cf = make_message("%s/.paraslash/filter.conf", home); @@@ -164,7 -164,6 +165,6 @@@ int main(int argc, char *argv[] ret = parse_config(argc, argv); if (ret < 0) goto out; - loglevel = get_loglevel_by_name(conf.loglevel_arg); ret = init_filter_chain(); if (ret < 0) goto out; diff --combined recv.c index 42fd335f,fc34279a..d01dab68 --- a/recv.c +++ b/recv.c @@@ -6,7 -6,6 +6,7 @@@ /** \file recv.c the stand-alone audio stream receiver */ +#include #include #include @@@ -53,6 -52,7 +53,7 @@@ static void *parse_config(int argc, cha HANDLE_VERSION_FLAG("recv", conf); if (conf.help_given || conf.detailed_help_given) print_help_and_die(); + loglevel = get_loglevel_by_name(conf.loglevel_arg); return check_receiver_arg(conf.receiver_arg, receiver_num); } @@@ -87,7 -87,6 +88,6 @@@ int main(int argc, char *argv[] PARA_EMERG_LOG("parse failed\n"); goto out; } - loglevel = get_loglevel_by_name(conf.loglevel_arg); r = &receivers[receiver_num]; rn.receiver = r; ret = r->open(&rn);