[file-roller] removed spaces before tabs
- From: Paolo Bacchilega <paobac src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [file-roller] removed spaces before tabs
- Date: Mon, 23 May 2011 17:35:43 +0000 (UTC)
commit 8ae6b7fe0bd5983c4eb44c34196ad5b6e520c088
Author: Paolo Bacchilega <paobac src gnome org>
Date: Mon May 23 19:33:10 2011 +0200
removed spaces before tabs
src/fr-command-rpm.c | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
---
diff --git a/src/fr-command-rpm.c b/src/fr-command-rpm.c
index c5bec5c..29bcd01 100644
--- a/src/fr-command-rpm.c
+++ b/src/fr-command-rpm.c
@@ -64,7 +64,7 @@ mktime_from_string (char *month,
} else
tm.tm_mon = 0;
- if (mday != NULL)
+ if (mday != NULL)
tm.tm_mday = atoi (mday);
else
tm.tm_mday = 1;
@@ -72,17 +72,17 @@ mktime_from_string (char *month,
if (year != NULL) {
if (strchr (year, ':') != NULL) {
char **fields = g_strsplit (year, ":", 2);
- if (n_fields (fields) == 2) {
- time_t now;
- struct tm *now_tm;
+ if (n_fields (fields) == 2) {
+ time_t now;
+ struct tm *now_tm;
- tm.tm_hour = atoi (fields[0]);
- tm.tm_min = atoi (fields[1]);
+ tm.tm_hour = atoi (fields[0]);
+ tm.tm_min = atoi (fields[1]);
- now = time(NULL);
- now_tm = localtime (&now);
- tm.tm_year = now_tm->tm_year;
- }
+ now = time(NULL);
+ now_tm = localtime (&now);
+ tm.tm_year = now_tm->tm_year;
+ }
} else
tm.tm_year = atoi (year) - 1900;
} else
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]