summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-11-15 21:44:59 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-11-15 21:44:59 (GMT)
commitd2e90c02e5ad19a5857e7c7fb87f248182fdb32d (patch)
treee070363aea3eee493b30e378ba39bfd6250f2088 /apps
parent8c84c3550ad13ec19b6340bd8e9633aee91156af (diff)
downloaduscxml-d2e90c02e5ad19a5857e7c7fb87f248182fdb32d.zip
uscxml-d2e90c02e5ad19a5857e7c7fb87f248182fdb32d.tar.gz
uscxml-d2e90c02e5ad19a5857e7c7fb87f248182fdb32d.tar.bz2
Fixed file:// handling bug on windows
Diffstat (limited to 'apps')
-rw-r--r--apps/uscxml-dot.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/uscxml-dot.cpp b/apps/uscxml-dot.cpp
index 11e2994..e79c3f9 100644
--- a/apps/uscxml-dot.cpp
+++ b/apps/uscxml-dot.cpp
@@ -86,7 +86,7 @@ int main(int argc, char** argv) {
try {
// current option has to be the interpreter's name
URL inputFile(argv[optind]);
- Interpreter interpreter = Interpreter::fromURI(inputFile);
+ Interpreter interpreter = Interpreter::fromURI(inputFile.asString());
optind++;
while(optind < argc) {