Skip to content

Commit

Permalink
Fix missed suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
ia committed Jul 22, 2023
1 parent 3749c43 commit 01a5a3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/Core/Drivers/USBPD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ static unsigned int sqrtI(unsigned long sqrtArg) {
return 0; // undefined result
}
if (sqrtArg == 1) {
return 1; // identity
return 1; // identity
}
answer = 0; // integer square root
for (x = 0x8000; x > 0; x = x >> 1) { // 16 bit shift
Expand Down

0 comments on commit 01a5a3b

Please sign in to comment.