Skip to content

Commit

Permalink
Fix wrong return value on SetExecutionModeAsync (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
josesimoes committed Sep 26, 2017
1 parent e8a8297 commit e10804b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.23.{build}
version: 0.25.{build}

pull_requests:
do_not_increment_build_number: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<PackageId>nanoFramework.Tools.Debugger.Net</PackageId>
<PackageVersion>0.4.0-preview024</PackageVersion>
<PackageVersion>0.4.0-preview025</PackageVersion>
<Description>This .NET library provides a debug client for nanoFramework devices using USB or Serial connection to a board.</Description>
<Authors>nanoFramework project contributors</Authors>
<Title>nanoFramework debug library for .NET</Title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ public class Reply : IConverter

public void PrepareForDeserialize(int size, byte[] data, Converter converter)
{
int num = (size - 4) / (3 * 4); // size - sizof(m_count) divided by size of deplpoymentdata struct (3*sizeof(uint))
int num = (size - 4) / (3 * 4); // size - sizof(m_count) divided by size of deployment data struct (3*sizeof(uint))

m_map = Enumerable.Range(0, num).Select(x => new DeploymentData()).ToList();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ public async Task<uint> GetExecutionBasePtrAsync()
}
else
{
return (0, true);
return (0, false);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<PackageId>nanoFramework.Tools.Debugger.UWP</PackageId>
<PackageVersion>0.4.0-preview024</PackageVersion>
<PackageVersion>0.4.0-preview025</PackageVersion>
<Description>This UWP library provides a debug client for nanoFramework devices using USB or Serial connection to a board.</Description>
<Authors>nanoFramework project contributors</Authors>
<Title>nanoFramework debug library for UWP</Title>
Expand Down

0 comments on commit e10804b

Please sign in to comment.