Skip to content

Commit

Permalink
chore: rename vxsign.h back to v2sign.h
Browse files Browse the repository at this point in the history
  • Loading branch information
cinit committed Oct 12, 2023
1 parent d32860e commit b0ac45b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Created by sulfate on 2023-10-12.
//

#ifndef QAUXV_VXSIGN_H
#define QAUXV_VXSIGN_H
#ifndef QAUXV_V2SIGN_H
#define QAUXV_V2SIGN_H

#include <cstdint>
#include <string>
Expand All @@ -15,4 +15,4 @@ bool checkSignature(JNIEnv* env, bool isInHostAsModule);

}

#endif //QAUXV_VXSIGN_H
#endif //QAUXV_V2SIGN_H
2 changes: 1 addition & 1 deletion app/src/main/cpp/qauxv_core/Natives.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#include "Natives.h"
#include "utils/shared_memory.h"
#include "misc/vxsign.h"
#include "misc/v2sign.h"

static bool throwIfNull(JNIEnv *env, jobject obj, const char *msg) {
if (obj == nullptr) {
Expand Down

0 comments on commit b0ac45b

Please sign in to comment.