Skip to content

Commit

Permalink
Fix one missed explicit cast for C++ due to typo in makefiles
Browse files Browse the repository at this point in the history
Should've been in commit 58c3f3b
  • Loading branch information
pmatilai committed Apr 10, 2024
1 parent 8c7d8d9 commit 1fe3e35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ endif()
set (cxx_sources
build.c files.c misc.c pack.c
parseChangelog.c parseDescription.c parseFiles.c parseList.c
parsePolicies.c parsePreamble.c parsePrep.c parseReq.c
parsePolicies.c parsePreamble.c parsePrep.c parseReqs.c
parseScript.c parseSimpleScript.c parseSpec.c
policies.c reqprov.c rpmfc.c
spec.c speclua.c
Expand Down
2 changes: 1 addition & 1 deletion build/parseReqs.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ struct parseRCPOTRichData {
static rpmRC parseRCPOTRichCB(void *cbdata, rpmrichParseType type,
const char *n, int nl, const char *e, int el, rpmsenseFlags sense,
rpmrichOp op, char **emsg) {
struct parseRCPOTRichData *data = cbdata;
struct parseRCPOTRichData *data = (struct parseRCPOTRichData *)cbdata;
StringBuf sb = data->sb;
rpmRC rc = RPMRC_OK;

Expand Down

0 comments on commit 1fe3e35

Please sign in to comment.