Skip to content

Commit

Permalink
Use ASSERT0P(), not ASSERT0(), to check a pointer.
Browse files Browse the repository at this point in the history
This avoids a compiler warning on 32-bit platforms.

Signed-off-by: Dag-Erling Smørgrav <[email protected]>
  • Loading branch information
dag-erling committed Aug 30, 2023
1 parent 939aa1b commit 43e9127
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/zfs/dbuf.c
Original file line number Diff line number Diff line change
Expand Up @@ -2701,7 +2701,7 @@ dmu_buf_will_clone(dmu_buf_t *db_fake, dmu_tx_t *tx)
*/
mutex_enter(&db->db_mtx);
VERIFY(!dbuf_undirty(db, tx));
ASSERT0(dbuf_find_dirty_eq(db, tx->tx_txg));
ASSERT0P(dbuf_find_dirty_eq(db, tx->tx_txg));
if (db->db_buf != NULL) {
arc_buf_destroy(db->db_buf, db);
db->db_buf = NULL;
Expand Down

0 comments on commit 43e9127

Please sign in to comment.