Skip to content

Commit

Permalink
fix: change optional to required for dylib fields
Browse files Browse the repository at this point in the history
  • Loading branch information
latonis committed May 22, 2024
1 parent 3fce923 commit 1c9d3ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/src/modules/protos/macho.proto
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ message Certificates {
}

message Dylib {
optional bytes name = 1;
optional uint32 timestamp = 2 [(yaml.field).fmt = "t"];
optional string compatibility_version = 3;
optional string current_version = 4;
required bytes name = 1;
required uint32 timestamp = 2 [(yaml.field).fmt = "t"];
required string compatibility_version = 3;
required string current_version = 4;
}

message DyldInfo {
Expand Down

0 comments on commit 1c9d3ec

Please sign in to comment.