Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2016-03-21 07:07:56 +0000
committerAlexander Kurtakov2016-03-21 08:12:12 +0000
commite0801da0f587792f14a3129115b14b40c87a7966 (patch)
tree12206a8fb3f4016c4804517e32ca8d1c02f44286 /profiling
parentd045d7dcfc1c024c38fa63cf2632881469dc52e0 (diff)
downloadorg.eclipse.linuxtools-e0801da0f587792f14a3129115b14b40c87a7966.tar.gz
org.eclipse.linuxtools-e0801da0f587792f14a3129115b14b40c87a7966.tar.xz
org.eclipse.linuxtools-e0801da0f587792f14a3129115b14b40c87a7966.zip
Fix compile against Neon M6.
Adapt to CDT change. Change-Id: I3d4359baf5c05197c1022a13e103d5f6b7035413 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/68884 Tested-by: Hudson CI
Diffstat (limited to 'profiling')
-rw-r--r--profiling/org.eclipse.linuxtools.binutils/src/org/eclipse/linuxtools/binutils/link2source/STCSourceNotFoundEditor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/profiling/org.eclipse.linuxtools.binutils/src/org/eclipse/linuxtools/binutils/link2source/STCSourceNotFoundEditor.java b/profiling/org.eclipse.linuxtools.binutils/src/org/eclipse/linuxtools/binutils/link2source/STCSourceNotFoundEditor.java
index 50e127e1e5..900b98026c 100644
--- a/profiling/org.eclipse.linuxtools.binutils/src/org/eclipse/linuxtools/binutils/link2source/STCSourceNotFoundEditor.java
+++ b/profiling/org.eclipse.linuxtools.binutils/src/org/eclipse/linuxtools/binutils/link2source/STCSourceNotFoundEditor.java
@@ -180,7 +180,7 @@ public class STCSourceNotFoundEditor extends CommonSourceNotFoundEditor {
containerList.add(foundMappings);
}
- foundMappings.addMapEntry(new MapEntrySourceContainer(missingPath, newSourcePath));
+ foundMappings.addMapEntry(new MapEntrySourceContainer(missingPath.toOSString(), newSourcePath));
director.setSourceContainers(containerList.toArray(new ISourceContainer[containerList.size()]));
}

Back to the top