Skip to content
Snippets Groups Projects
Commit 306c8596 authored by Pawel Polanski's avatar Pawel Polanski Committed by Eike Ziller
Browse files

Symbian: Stepping into functions has been fixed


While debugging Symbian C++ applications
stepping into functions has not been working due to
a typo in the python file

Change-Id: I76710fe3f599303059f773030e57d778164bcebb
Reviewed-by: default avatarEike Ziller <eike.ziller@nokia.com>
parent 0164e1be
No related branches found
No related tags found
No related merge requests found
......@@ -295,7 +295,7 @@ try:
#######################################################################
def sal(args):
(cmd, addr) = arg.split(",")
(cmd, addr) = args.split(",")
lines = catchCliOutput("info line *" + addr)
fromAddr = "0x0"
toAddr = "0x0"
......@@ -338,3 +338,4 @@ try:
except:
pass
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment