Re: [PATCH 2/3] seq: match f's type with strlen() result type

2014-07-28 Thread Guilherme Maciel Ferreira
Hi, 2014-07-26 15:05 GMT-03:00 walter harms : > actually strlen() returns size_t. When you really need this to be "correct" > you should use size_t. I know. I simply didn't see anywhere nearby using size_t, then I assumed unsigned was used instead. But, I'd rather use size_t! > Did you get an er

Re: [PATCH 2/3] seq: match f's type with strlen() result type

2014-07-26 Thread walter harms
actually strlen() returns size_t. When you really need this to be "correct" you should use size_t. Did you get an error with a certain system. re, wh Am 26.07.2014 19:37, schrieb Guilherme Maciel Ferreira: > The variable f compares and receives only unsigned values. > > Signed-off-by: Guilherme

[PATCH 2/3] seq: match f's type with strlen() result type

2014-07-26 Thread Guilherme Maciel Ferreira
The variable f compares and receives only unsigned values. Signed-off-by: Guilherme Maciel Ferreira --- coreutils/seq.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/coreutils/seq.c b/coreutils/seq.c index 8986192..d3b449a 100644 --- a/coreutils/seq.c +++ b/coreutils/