Skip to content

Commit

Permalink
Fixed printf warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
blitz committed Aug 13, 2013
1 parent 6bfa1b8 commit b557232
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model/idecontroller.cc
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ class IdeController : public StaticReceiver<IdeController>
PCI_reset();
reset_device();
Logging::printf("Instanciated IDE controller with bdf %#x for disk '%s' with %#Lx sectors\n",
bdf, params.name, params.sectors);
bdf, params.name, (unsigned long long)params.sectors);
}
};

Expand Down

0 comments on commit b557232

Please sign in to comment.