ALT Linux Team development discussions
 help / color / mirror / Atom feed
* [devel] Q: Compiler warnings
@ 2003-10-08  3:08 Anton V. Denisov
  2003-10-08  7:38 ` Stanislav Ievlev
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Anton V. Denisov @ 2003-10-08  3:08 UTC (permalink / raw)
  To: ALT Devel discussion list

Приветствую всех.

Вопрос к программирующему сообществу. Насколько опасны приведённые ошибки?

warning: comparison between signed and unsigned integer expressions
warning: `const char*operation' might be used uninitialized in this function
warning: int format, long unsigned int arg (arg 4)
warning: control reaches end of non-void function
warning: too many arguments for format

Какие из них надо обязательно исправить?

С уважением, Антон В. Денисов.




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [devel] Q: Compiler warnings
  2003-10-08  3:08 [devel] Q: Compiler warnings Anton V. Denisov
@ 2003-10-08  7:38 ` Stanislav Ievlev
  2003-10-09  2:56   ` Anton V. Denisov
  2003-10-08  8:17 ` Alexey Voinov
  2003-10-08  8:41 ` Denis Ovsienko
  2 siblings, 1 reply; 5+ messages in thread
From: Stanislav Ievlev @ 2003-10-08  7:38 UTC (permalink / raw)
  To: ALT Devel discussion list

On Wed, Oct 08, 2003 at 03:08:25PM +1200, Anton V. Denisov wrote:
> Приветствую всех.
> 
> Вопрос к программирующему сообществу. Насколько опасны приведённые ошибки?
> 
> warning: comparison between signed and unsigned integer expressions
> warning: `const char*operation' might be used uninitialized in this function
> warning: int format, long unsigned int arg (arg 4)
> warning: control reaches end of non-void function
> warning: too many arguments for format
> 
> Какие из них надо обязательно исправить?
Что касается этих они не стали ошибками в новых версиях компилятора
Поэтому либо все либо ничего.
> 
> С уважением, Антон В. Денисов.
> 
> 
> _______________________________________________
> Devel mailing list
> Devel@altlinux.ru
> http://altlinux.ru/mailman/listinfo/devel


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [devel] Q: Compiler warnings
  2003-10-08  3:08 [devel] Q: Compiler warnings Anton V. Denisov
  2003-10-08  7:38 ` Stanislav Ievlev
@ 2003-10-08  8:17 ` Alexey Voinov
  2003-10-08  8:41 ` Denis Ovsienko
  2 siblings, 0 replies; 5+ messages in thread
From: Alexey Voinov @ 2003-10-08  8:17 UTC (permalink / raw)
  To: ALT Devel discussion list

[-- Attachment #1: Type: text/plain, Size: 1003 bytes --]

Anton V. Denisov wrote
> Приветствую всех.
> 
> Вопрос к программирующему сообществу. Насколько опасны приведённые ошибки?
> 
> warning: comparison between signed and unsigned integer expressions
> warning: `const char*operation' might be used uninitialized in this function
> warning: int format, long unsigned int arg (arg 4)
> warning: control reaches end of non-void function
> warning: too many arguments for format
> 
> Какие из них надо обязательно исправить?
В своих программах я предпочитаю избавляться от warning'ов вообще.
Поэтому -Wall -W -pedantic -Werror это для меня норма. :)
(-W иногда убираю).
Если программа чужая, то исправление warning'ов там занятие абсолютно
неблагодарное, поэтому оставляю всё как есть.

-- 
Best Regards!           | ... бригадир, крупная женщина в белом от пыли
Alexey Voinov           | рабочем халате, громко командовала работой,
			| великолепно подбирая выражения.
voins@voins.program.ru  |                 Урсула Ле Гуин "Обездоленный"
voins@altlinux.ru


[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [devel] Q: Compiler warnings
  2003-10-08  3:08 [devel] Q: Compiler warnings Anton V. Denisov
  2003-10-08  7:38 ` Stanislav Ievlev
  2003-10-08  8:17 ` Alexey Voinov
@ 2003-10-08  8:41 ` Denis Ovsienko
  2 siblings, 0 replies; 5+ messages in thread
From: Denis Ovsienko @ 2003-10-08  8:41 UTC (permalink / raw)
  To: ALT Devel discussion list


> warning: comparison between signed and unsigned integer expressions
возможно нарушение алгоритма при определённых комбинациях значений
переменных. особенно весело, если это индексы массивов.

> warning: `const char*operation' might be used uninitialized in this function
вплоть до SIGSEGV

> warning: int format, long unsigned int arg (arg 4)
неправильный вывод больших чисел

> warning: control reaches end of non-void function
нарушение алгоритма

> warning: too many arguments for format
несмертельно, но явно указывает на опечатку

--
    DO4-UANIC


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [devel] Q: Compiler warnings
  2003-10-08  7:38 ` Stanislav Ievlev
@ 2003-10-09  2:56   ` Anton V. Denisov
  0 siblings, 0 replies; 5+ messages in thread
From: Anton V. Denisov @ 2003-10-09  2:56 UTC (permalink / raw)
  To: ALT Devel discussion list

> > warning: comparison between signed and unsigned integer expressions
> > warning: `const char*operation' might be used uninitialized in this
function
> > warning: int format, long unsigned int arg (arg 4)
> > warning: control reaches end of non-void function
> > warning: too many arguments for format
> >
> > Какие из них надо обязательно исправить?
> Что касается этих они не стали ошибками в новых версиях компилятора
> Поэтому либо все либо ничего.

В каких версиях компилятора? Эти ошибки выдавал GCC 3.2.
Да и что-то не верится, что

warning: control reaches end of non-void function
warning: too many arguments for format

уже не являются ошибками...





^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2003-10-09  2:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-08  3:08 [devel] Q: Compiler warnings Anton V. Denisov
2003-10-08  7:38 ` Stanislav Ievlev
2003-10-09  2:56   ` Anton V. Denisov
2003-10-08  8:17 ` Alexey Voinov
2003-10-08  8:41 ` Denis Ovsienko

ALT Linux Team development discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/devel/0 devel/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 devel devel/ http://lore.altlinux.org/devel \
		devel@altlinux.org devel@altlinux.ru devel@lists.altlinux.org devel@lists.altlinux.ru devel@linux.iplabs.ru mandrake-russian@linuxteam.iplabs.ru sisyphus@linuxteam.iplabs.ru
	public-inbox-index devel

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.devel


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git