Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libpromises/changes_chroot.c
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ bool RecordFileEvaluatedInChroot(const char *path)
return ret;
}

bool RecordPkgOperationInChroot(const char *op, const char *name, const char *arch, const char *version)
bool RecordPkgOperationInChroot(const char *op, const char *name, const char *version, const char *arch)
{
assert(op != NULL);
assert(name != NULL);
Expand Down
2 changes: 1 addition & 1 deletion libpromises/changes_chroot.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ void PrepareChangesChroot(const char *path);
bool RecordFileChangedInChroot(const char *path);
bool RecordFileRenamedInChroot(const char *old_name, const char *new_name);
bool RecordFileEvaluatedInChroot(const char *path);
bool RecordPkgOperationInChroot(const char *op, const char *name, const char *arch, const char *version);
bool RecordPkgOperationInChroot(const char *op, const char *name, const char *version, const char *arch);

#endif /* CFENGINE_CHANGES_CHROOT_H */
Loading