user9254599
user9254599

Reputation: 11

Amazon Web Services error

I have finished my assignment earlier today on cloud9 and when I returned to it today I found this error:

The error I encountered

I am relatively new to AWS and I am not sure what happened to my original code. Does anyone know how to fix this issue? Thank you!

Upvotes: 1

Views: 39

Answers (1)

Stephen C
Stephen C

Reputation: 718658

It looks like one of your source files has been overwritten with a binary. (The ELF characters at the start are a big clue ...)

Does anyone know how to fix this issue?

Restore the missing file from backups or from your source code repository. If you have neither of those, you will need to type in the missing file from memory.

There is no sensible way to recover lost C or C++ source code from a binary.

Upvotes: 4

Related Questions