aboutsummaryrefslogtreecommitdiffstats
path: root/src/io.c
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2009-01-02 22:28:53 +0000
committerFrederic Culot <calcurse@culot.org>2009-01-02 22:28:53 +0000
commitbf3bce0ab2d6d5fc8448821fbfa29b48a1bb5994 (patch)
treeaaff674f4b38286007250298e88cc21d2f7c8d3c /src/io.c
parentaa7d6c5eb75d236a6a58b4df8c98335fd0ac24dd (diff)
downloadcalcurse-bf3bce0ab2d6d5fc8448821fbfa29b48a1bb5994.tar.gz
calcurse-bf3bce0ab2d6d5fc8448821fbfa29b48a1bb5994.zip
code cleanup
Diffstat (limited to 'src/io.c')
-rwxr-xr-xsrc/io.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/io.c b/src/io.c
index 86503e7..3926f7a 100755
--- a/src/io.c
+++ b/src/io.c
@@ -1,4 +1,4 @@
-/* $calcurse: io.c,v 1.53 2009/01/02 19:52:32 culot Exp $ */
+/* $calcurse: io.c,v 1.54 2009/01/02 22:28:54 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -298,9 +298,9 @@ static void
ical_export_valarm (FILE *stream)
{
(void)fprintf (stream, "BEGIN:VALARM\n");
- pthread_mutex_lock (&nbar->mutex);
- (void)fprintf (stream, "TRIGGER:-P%dS\n", nbar->cntdwn);
- pthread_mutex_unlock (&nbar->mutex);
+ pthread_mutex_lock (&nbar.mutex);
+ (void)fprintf (stream, "TRIGGER:-P%dS\n", nbar.cntdwn);
+ pthread_mutex_unlock (&nbar.mutex);
(void)fprintf (stream, "ACTION:DISPLAY\n");
(void)fprintf (stream, "END:VALARM\n");
}
@@ -871,34 +871,34 @@ io_save_cal (conf_t *conf, io_save_display_t display)
(void)fprintf (data_file, "%d\n", wins_layout ());
if (ui_mode == UI_CURSES)
- pthread_mutex_lock (&nbar->mutex);
+ pthread_mutex_lock (&nbar.mutex);
(void)fprintf (data_file,
"\n# If this option is set to yes, "
"notify-bar will be displayed :\n");
(void)fprintf (data_file, "notify-bar_show=\n");
- (void)fprintf (data_file, "%s\n", (nbar->show) ? "yes" : "no");
+ (void)fprintf (data_file, "%s\n", (nbar.show) ? "yes" : "no");
(void)fprintf (data_file,
"\n# Format of the date to be displayed inside notify-bar :\n");
(void)fprintf (data_file, "notify-bar_date=\n");
- (void)fprintf (data_file, "%s\n", nbar->datefmt);
+ (void)fprintf (data_file, "%s\n", nbar.datefmt);
(void)fprintf (data_file,
"\n# Format of the time to be displayed inside notify-bar :\n");
(void)fprintf (data_file, "notify-bar_clock=\n");
- (void)fprintf (data_file, "%s\n", nbar->timefmt);
+ (void)fprintf (data_file, "%s\n", nbar.timefmt);
(void)fprintf (data_file,
"\n# Warn user if he has an appointment within next "
"'notify-bar_warning' seconds :\n");
(void)fprintf (data_file, "notify-bar_warning=\n");
- (void)fprintf (data_file, "%d\n", nbar->cntdwn);
+ (void)fprintf (data_file, "%d\n", nbar.cntdwn);
(void)fprintf (data_file,
"\n# Command used to notify user of "
"an upcoming appointment :\n");
(void)fprintf (data_file, "notify-bar_command=\n");
- (void)fprintf (data_file, "%s\n", nbar->cmd);
+ (void)fprintf (data_file, "%s\n", nbar.cmd);
(void)fprintf (data_file,
"\n# Format of the date to be displayed "
@@ -913,7 +913,7 @@ io_save_cal (conf_t *conf, io_save_display_t display)
(void)fprintf (data_file, "%d\n", conf->input_datefmt);
if (ui_mode == UI_CURSES)
- pthread_mutex_unlock (&nbar->mutex);
+ pthread_mutex_unlock (&nbar.mutex);
file_close (data_file, __FILE_POS__);
}