Skip to content

Commit

Permalink
compiler warning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jo-stfc committed Dec 6, 2024
1 parent fb90ef3 commit 0a101bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v5.7.1
v5.7.2
2 changes: 1 addition & 1 deletion src/XrdCeph/XrdCephOss.cc
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ ssize_t getNumericAttr(const char* const path, const char* attrName, const int m
if (attrLen <= 0) {
retval = -EINVAL;
} else {
attrValue[attrLen] = (char)NULL;
attrValue[attrLen] = (char)'\0';
char *endPointer = (char *)NULL;
retval = strtoll(attrValue, &endPointer, 10);
}
Expand Down
2 changes: 1 addition & 1 deletion xrootd.spec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

Name: xrootd
Epoch: 1
Release: 3%{?dist}%{?with_clang:.clang}%{?with_asan:.asan}%{?with_openssl11:.ssl11}
Release: 2%{?dist}%{?with_clang:.clang}%{?with_asan:.asan}%{?with_openssl11:.ssl11}
Summary: Extended ROOT File Server
Group: System Environment/Daemons
License: LGPL-3.0-or-later AND BSD-2-Clause AND BSD-3-Clause AND curl AND MIT AND Zlib
Expand Down

0 comments on commit 0a101bd

Please sign in to comment.