fix compile warning for pg_backup_tar.c

Поиск
Список
Период
Сортировка
От Andrew Dunstan
Тема fix compile warning for pg_backup_tar.c
Дата
Msg-id 418FB0B9.2050109@dunslane.net
обсуждение исходный текст
Ответы Re: fix compile warning for pg_backup_tar.c
Re: fix compile warning for pg_backup_tar.c
Список pgsql-patches
Yet another fix for a useless compile warning. This one is slightly ugly ;-(

cheers

andrew


Index: src/bin/pg_dump/pg_backup_tar.c
===================================================================
RCS file: /home/cvsmirror/pgsql/src/bin/pg_dump/pg_backup_tar.c,v
retrieving revision 1.45
diff -c -r1.45 pg_backup_tar.c
*** src/bin/pg_dump/pg_backup_tar.c    7 Oct 2004 15:21:55 -0000    1.45
--- src/bin/pg_dump/pg_backup_tar.c    8 Nov 2004 17:26:03 -0000
***************
*** 1019,1025 ****
--- 1019,1029 ----
       */
      fseeko(tmp, 0, SEEK_END);
      th->fileLen = ftello(tmp);
+ #ifdef INT64_IS_BUSTED
      if (th->fileLen > MAX_TAR_MEMBER_FILELEN)
+ #else
+     if (((int64) th->fileLen -1) >= MAX_TAR_MEMBER_FILELEN)
+ #endif
          die_horribly(AH, modulename, "archive member too large for tar format\n");
      fseeko(tmp, 0, SEEK_SET);


В списке pgsql-patches по дате отправления:

Предыдущее
От: John Gray
Дата:
Сообщение: Re: contrib/xml2: add function xml_encode_special_chars
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Enhanced PITR doc patch