Skip to content

Commit

Permalink
Fix From<uuid:Uuid> for GUID (#38)
Browse files Browse the repository at this point in the history
* Add ToOwned import for UUID feature

* Formatting fix

* Update guid.rs
  • Loading branch information
NateD-MSFT authored Aug 8, 2024
1 parent ceb7c46 commit 24b50ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion win_etw_provider/src/guid.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ impl From<uuid::Uuid> for GUID {
data1: fields.0,
data2: fields.1,
data3: fields.2,
data4: fields.3.to_owned(),
data4: *fields.3,
}
}
}
Expand Down

0 comments on commit 24b50ad

Please sign in to comment.