Skip to content
Snippets Groups Projects
Commit fcfa7535 authored by Gerardo Ganis's avatar Gerardo Ganis
Browse files

Fix buildbot warnings on clang-MacOSX-64

git-svn-id: http://root.cern.ch/svn/root/trunk@39834 27541ba8-7e3a-0410-8455-c3a389f83636
parent ff659f0f
No related branches found
No related tags found
No related merge requests found
......@@ -240,7 +240,7 @@ int XrdXrootdFile::bin2hex(char *outbuff, char *inbuff, int inlen)
// Format the data
//
for (i = i; i < inlen; i++)
for (; i < inlen; i++)
{outbuff[j++] = hv[(inbuff[i] >> 4) & 0x0f];
outbuff[j++] = hv[ inbuff[i] & 0x0f];
}
......
......@@ -99,7 +99,7 @@ XrdXrootdJob2Do::XrdXrootdJob2Do(XrdXrootdJob *job,
{
int i;
for (i = 0; i < 5 && args[i]; i++) theArgs[i] = strdup(args[i]);
for (i = i; i < 5; i++) theArgs[i] = (char *)0;
for (; i < 5; i++) theArgs[i] = (char *)0;
theJob = job;
JobNum = jnum;
JobMark = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment